smazzanti/mrmr

multiclass Y

hoonber opened this issue · 3 comments

Thank you for this package @smazzanti .I would like to ask about multi target how it works, same as a single label? I noticed this in the introduction, but it doesn't seem to be in the code.Thanks.

Hi @hoonber, I am not sure: do you mean multilabel or multiclass?
Multiclass (I mean when y has more than 2 possible values, for instance: y = pd.Series([0, 0, 0, 1, 1, 1, 2, 2, 2, 3])) is supported and works seamlessly.
Multilabel (when y is a DataFrame, with more than one column) is not supported yet.

Thank you for your reply.It should be multilabel what I mean.