/usr/local/lib/python3.7/dist-packages/sklearn/linear_model/_logistic.py:940: ConvergenceWarning: lbfgs failed to converge (status=1): STOP: TOTAL NO. of ITERATIONS REACHED LIMIT.
I am getting the above error, here is my notebook . please suggest. i am stuck in this project for so long time.
https://colab.research.google.com/drive/1qgRBJvZ3Dw4fqRHyGsJcrp_QfYSTuaMK?usp=sharing
https://stackoverflow.com/questions/62658215/convergencewarning-lbfgs-failed-to-converge-status-1-stop-total-no-of-iter
Your solution is here
thanks a lot ! it really helped.
Hi Kruzer1138,
This is not an error. This is warning from Logistic Regression that your model is not good enough for the given data points. Try working on normalization/ scaling and many different techniques to feed to your model. You can also use some advanced boosting models as well to better fit the data.
thanks a lot , it helped
You should try increasing the max_iter
thank you so much