We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c3535c commit b4d1e95Copy full SHA for b4d1e95
1 file changed
ml_grid/pipeline/main.py
@@ -208,6 +208,11 @@ def multi_run_wrapper(args: Tuple) -> Any:
208
self.highest_score = max(self.highest_score, res)
209
print(f"highest score: {highest_score}")
210
211
+ except ValueError as e:
212
+ if "All feature columns were removed" in str(e):
213
+ print(f"Skipping run due to data issue: {e}")
214
+ continue # Skip to the next iteration
215
+
216
except CatBoostError as e:
217
print(f"CatBoostError: {e}")
218
print(f"continuing despite catboost error...")
0 commit comments