Remove deprecated multi_class argument in ALogitLasso#16
Remove deprecated multi_class argument in ALogitLasso#16FrenkT wants to merge 1 commit intogregbellan:stabl_lwfrom
Conversation
|
Hello @FrenkT , Thank you for your pull request. You indeed raise a valid point for improving the library following the changes introduced in version 1.5 of the sklearn library. As a quick, but not sustainable, solution, you can fix the version of sklearn in the setup.py file at version ~1.4: |
|
@xavdurand thank you for the input. I would be happy to take a look at the notebooks in the next few days. |
|
Hi @xavdurand , |
|
Hi @FrenkT , Thank you for looking at the argument. The modification that we need to perform is to change the I hope it is clearer. |
The
multi_classargument was deprecated in scikit-learn 1.5, and specifying it now results in a warning message every time LogisticRegression is fit:FutureWarning: 'multi_class' was deprecated in version 1.5 and will be removed in 1.7. From then on, it will always use 'multinomial'. Leave it to its default value to avoid this warning..