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
I need to pass probability=True to SVC algorithm, because it is used later for ensemble soft voting classifier (VotingClassifier) and therefore probability calculated is required.
I tried with the following, but get the error: "Error: _svm_hp_space() got an unexpected keyword argument 'probability'"
Looks like that parameter was missed. It may not have existed in scikit-learn 0.13 which was the latest version when hpsklearn was created. I'll add it in, should be a quick fix. The syntax you used will be correct.
I need to pass probability=True to SVC algorithm, because it is used later for ensemble soft voting classifier (VotingClassifier) and therefore probability calculated is required.
I tried with the following, but get the error: "Error: _svm_hp_space() got an unexpected keyword argument 'probability'"
How to pass this probability=True parameter value to the SVC classifier utilizing hpsklearn?
The text was updated successfully, but these errors were encountered: