All the 100 fits failed. It is very likely that your model is misconfigured. You can try to debug the error by setting error_score='raise'.
时间: 2024-06-07 19:08:24 浏览: 327
Python库 | fits_to_stamps-0.0.3-py2.py3-none-any.whl
This error message indicates that all 100 fits of your model have failed, and suggests that there may be an issue with the configuration of your model. One suggestion is to set the error_score parameter to 'raise' when calling the fit method, which will raise an exception when an error occurs during training. This can help you identify the specific error that is causing the fits to fail, and then you can take steps to address that error. Additionally, you may want to review your model's hyperparameters and make sure they are appropriate for your data and task.
阅读全文