We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0a92af commit 07f2637Copy full SHA for 07f2637
autosklearn/smbo.py
@@ -884,8 +884,9 @@ def run_smbo(self, max_iters=1000):
884
Y_cfg[:, 0][Y_cfg[:, 0] > 2] = 2
885
886
if len(X_meta) > 0 and len(X_cfg) > 0:
887
- X_cfg = np.concatenate((X_meta, X_cfg))
888
- Y_cfg = np.concatenate((Y_meta, Y_cfg))
+ pass
+ #X_cfg = np.concatenate((X_meta, X_cfg))
889
+ #Y_cfg = np.concatenate((Y_meta, Y_cfg))
890
elif len(X_meta) > 0:
891
X_cfg = X_meta.copy()
892
Y_cfg = Y_meta.copy()
0 commit comments