Skip to content

Commit

Permalink
extended to 5min evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmatsumoto committed Aug 1, 2023
1 parent fe51b41 commit 2e86f1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tpot2/tests/test_estimators.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def tpot_estimator():
early_stop=5,
other_objective_functions= [],
other_objective_functions_weights=[],
max_time_seconds=90,
verbose=1)
max_time_seconds=300,
verbose=3)

@pytest.fixture
def sample_dataset():
Expand Down Expand Up @@ -81,11 +81,11 @@ def test_tpot_estimator_config_dict_type():

@pytest.fixture
def tpot_classifier():
return tpot2.tpot_estimator.templates.TPOTClassifier(max_time_seconds=90,verbose=1)
return tpot2.tpot_estimator.templates.TPOTClassifier(max_time_seconds=300,verbose=3)

@pytest.fixture
def tpot_regressor():
return tpot2.tpot_estimator.templates.TPOTRegressor(max_time_seconds=90,verbose=1)
return tpot2.tpot_estimator.templates.TPOTRegressor(max_time_seconds=300,verbose=3)

def test_tpot_classifier_fit(tpot_classifier,sample_dataset):
#load iris dataset
Expand Down

0 comments on commit 2e86f1a

Please sign in to comment.