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.