Skip to content

Commit 9c8c0e2

Browse files
authored
Update default params for TPOT example
1 parent 6f63e83 commit 9c8c0e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ digits = load_digits()
6161
X_train, X_test, y_train, y_test = train_test_split(digits.data, digits.target,
6262
train_size=0.75, test_size=0.25)
6363

64-
tpot = TPOT(generations=5)
64+
tpot = TPOT(generations=5, population_size=20, verbosity=2)
6565
tpot.fit(X_train, y_train)
6666
print(tpot.score(X_test, y_test))
6767
tpot.export('tpot_mnist_pipeline.py')

0 commit comments

Comments
 (0)