[Çözüldü] Anaconda3\lib\site-packages\sklearn\linear_model\logistic.py:433: FutureWarning: Default solver will be changed to ‘lbfgs’ in 0.22. Specify a solver to silence this warning. FutureWarning) – Logistic Regression – Hatası

Published by: 3

Logictic Regression için Future Warning Hatası Çözümü

Hata: Anaconda3\lib\site-packages\sklearn\linear_model\logistic.py:433: FutureWarning: Default solver will be changed to ‘lbfgs’ in 0.22. Specify a solver to silence this warning.
FutureWarning)

Çözüm: Logistic Regression tanımladığınız satır şu şekilde olsun.

model = LogisticRegression()

Bu şekilde hata alıyor iseniz aşağıdaki parametreleri kullanarak hatadan kurtulabilirsiniz. Herhangi bir tanesini kullanmanız yeterli olacaktır.

  • model = LogisticRegression(solver=’liblinear’)
  • model = LogisticRegression(solver=’lbfgs’)

3 comments

  1. Devin

    You’ve made some good points there. I looked on the internet for more info about the issue and found most people will go along with your views on this website.

Bir cevap yazın

E-posta hesabınız yayımlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir