> If I understand you correctly, you're trying to do multilabel classification > by converting the problem to a multitask binary classification problem. > Unfortunately, no classifier in scikit-learn can accept an output matrix. > You need to solve each task independently by fitting a classifier with a > column (i.e., a vector, not a matrix) of your output matrix.
Decision trees and forests accept an output matrix. You should give them a try on your problem. Best, Gilles ------------------------------------------------------------------------------ Get 100% visibility into Java/.NET code with AppDynamics Lite! It's a free troubleshooting tool designed for production. Get down to code-level detail for bottlenecks, with <2% overhead. Download for free and get started troubleshooting in minutes. http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
