microsoft / FLAML

A fast library for AutoML and tuning. Join our Discord: https://discord.gg/Cppx2vSPVP.
https://microsoft.github.io/FLAML/
MIT License
3.75k stars 495 forks source link

How to change value of max_iter in Logistic Regression in AutoML ? #1265

Open shivam-maurya-git opened 6 months ago

shivam-maurya-git commented 6 months ago

I am working on classification task using AutoML.

While using lrl1 and lrl2 , I am getting error :

ConvergenceWarning: lbfgs failed to converge (status=1): STOP: TOTAL NO. of ITERATIONS REACHED LIMIT. How can I solve this ?

Programmer-RD-AI commented 1 month ago

Hi, This is a warning that was created when specifically in small datasets... In turn, this warning states that the algorithm has reached the solution. So thats simply the explanation For a more in-depth explanation, check out: https://stackoverflow.com/questions/62658215/convergencewarning-lbfgs-failed-to-converge-status-1-stop-total-no-of-iter Thanks