Skip to content

Commit 3b011cc

Browse files
committed
Changed to iris in example
1 parent 604c698 commit 3b011cc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/tabular/40_advanced/example_single_configuration.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
# Data Loading
3636
# ============
3737

38-
X, y = sklearn.datasets.fetch_openml(data_id=3, return_X_y=True, as_frame=True)
38+
X, y = sklearn.datasets.fetch_openml('iris', return_X_y=True, as_frame=True)
3939
X_train, X_test, y_train, y_test = sklearn.model_selection.train_test_split(
4040
X, y, test_size=0.8, random_state=3
4141
)
@@ -68,6 +68,7 @@
6868
X_train=X_train,
6969
y_train=y_train,
7070
dataset_name='kr-vs-kp',
71+
run_time_limit_secs=100,
7172
X_test=X_test,
7273
y_test=y_test,
7374
disable_file_output=False,

0 commit comments

Comments
 (0)