How does the RandomForestClassifier
of sklearn
handle a multilabel problem (under the hood)?
For example, does it brake the problem in distinct one-label problems?
Just to be clear, I have not really tested it yet but I see y : array-like, shape = [n_samples] or [n_samples, n_outputs]
at the .fit()
function of the RandomForestClassifier
.