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
The MLPClassifier automatically encodes single columns of string targets to integers, but does not do so with multioutput problems. It should allow users to enter an array of targets such as
y= [['spam', 'dog'], ['eggs', 'cat']]
This would make multilabel-multiclass modeling much easier, so it may require that #47 be done first.
The text was updated successfully, but these errors were encountered:
The
MLPClassifier
automatically encodes single columns of string targets to integers, but does not do so with multioutput problems. It should allow users to enter an array of targets such asThis would make multilabel-multiclass modeling much easier, so it may require that #47 be done first.
The text was updated successfully, but these errors were encountered: