Skip to content

Commit 497770b

Browse files
committed
docs: fix quickstart code
1 parent b91d7ea commit 497770b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,16 @@ errors = []
7777
correct = []
7878
features = []
7979

80+
ts = datetime.timestamp(datetime.now())
81+
cv_config = {
82+
"N_REPEATS": 10,
83+
"N_SPLITS": 10,
84+
"SHUFFLE": True,
85+
"SCALE": False,
86+
"CALIBRATE": True,
87+
"CALIB_FRACTION": 0.15,
88+
}
89+
8090
for i, (train_idx, val_idx) in enumerate(outer_cv.split(X, y)):
8191
Xtemp, ytemp = X.iloc[train_idx, :], y.iloc[train_idx]
8292
Xval, yval = X.iloc[val_idx, :], y.iloc[val_idx]

0 commit comments

Comments
 (0)