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
LinearSVC should have been excluded from the search space if you optimized towards a metric that requires probabilities. Is it the case that you optimized towards a metric that requires only labels (e.g., accuracy) and then call predict_proba? I guess the desired behavior would be to either fall back on the next-best model which supports probabilities or give a better error (probably the former, with a warning).
Maybe an IF Condition if GAMA outputs linear SVC can be inserted with extra arguments.
This bug makes sense because LinearSVC does not support probabilities by default I think
reference here: https://stackoverflow.com/questions/47312432/attributeerrorlinearsvc-object-has-no-attribute-predict-proba
Maybe an IF Condition if GAMA outputs linear SVC can be inserted with extra arguments.
The text was updated successfully, but these errors were encountered: