Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
03bennej committed Dec 13, 2023
1 parent 95a3c17 commit 957d0bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_ei.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def test_ensemble_integration(sampling_strategy, dtype):
from eipy.metrics import fmax_score

# Generate toy data for testing
X, y = make_classification(n_samples=50, n_features=10, n_classes=2, weights=[0.6, 0.4], n_redundant=0)
X, y = make_classification(n_samples=100, n_features=10, n_classes=2, weights=[0.6, 0.4], n_redundant=0)

X_1 = X[:, :4]
X_2 = X[:, 4:]
Expand Down Expand Up @@ -60,7 +60,7 @@ def test_ensemble_integration(sampling_strategy, dtype):
n_samples=2,
sampling_strategy=sampling_strategy,
sampling_aggregation="mean",
n_jobs=1,
n_jobs=-1,
metrics=metrics,
random_state=42,
project_name="demo",
Expand Down

0 comments on commit 957d0bc

Please sign in to comment.