Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a multi-output regression problem with d_x input features and d_y outputs. the outputs have a complex, non-linear correlation structure.

i'd like to use random forests to do the regression. as far as i can tell, random forests for regression only work with a single output, so i would have to train d_y random forests - one for each output. this ignores their correlations.

is there an extension to random forests that takes output correlations into account? maybe something like gaussian process regression for multi-task learning.

thanks.

share|improve this question
1  
here's the best i've found so far: scikit-learn.org/dev/modules/tree.html#multi-output-problems – sergeyf Jul 24 '12 at 6:14
Related question. – wok Apr 12 at 9:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.