You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems there is an issue with the training of Scholar.Linear.LogisticRegression; see here. I believe this is because SGD is used as a default optimizer. Setting optimizer: adam in fit/3 solves the problem. Perhaps we should change the default optimizer?
The text was updated successfully, but these errors were encountered:
The issue happens to be more complex than the default optimizer. Using Adam instead of SGD seems to have worked with the binary backend, not with EXLA. However, I am not able to investigate further as cannot install EXLA on my M1 Mac for some reason. Is this expected?
It seems there is an issue with the training of
Scholar.Linear.LogisticRegression
; see here. I believe this is because SGD is used as a default optimizer. Settingoptimizer: adam
infit/3
solves the problem. Perhaps we should change the default optimizer?The text was updated successfully, but these errors were encountered: