AutoML returning NoneType for model after tuning with small time budget #738
-
Hello,
with X being a array shaped (1000,200). I get the following error:
When I rerun the experiment with the same data, it works, but then stops later at another repetition again. Of course, an easy work-around is to catch the error and re-run the experiment, still I wonder, how this can happen, because from what I understood in the docs, it should return rather a default estimator, than a NoneType object? Can someone explain what happens? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
When the time budget is too small, it can happen that no estimator is trained at all within the budget. Due to variance of the execution time for the code before a training starts, in some run you have enough time left to train one model and in some other run you don't. |
Beta Was this translation helpful? Give feedback.
When the time budget is too small, it can happen that no estimator is trained at all within the budget. Due to variance of the execution time for the code before a training starts, in some run you have enough time left to train one model and in some other run you don't.