-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multi-output (multi-target) problems #30
Comments
Multitarget regression is not possible - for regression currently the target must have |
Copying post of @fipelle from another thread: Also, it seems that loss is only available for classification trees - not regression trees. Is it possible to repurpose the existing code for classification trees to run regression tasks? It would be convenient both for regression tasks with one target and a custom loss, and multi-target problems (the current implementation for regression trees does not allow for labels that are not Float64 - i.e., single targets). |
This is an question here and I have wondered before why classification and regression have separate implementations. I diff'ed the two My initial guess is that generalizing regression.jl would be more useful than re-purposing classification.jl. |
Hi, is it possible to do something like the multi-output from scikit-learn in Julia? Cause my input matrix has 3 features, and I have 12 different outputs per example.
I tried to train 12 separate trees, but this didn't work.
The text was updated successfully, but these errors were encountered: