-
Notifications
You must be signed in to change notification settings - Fork 22
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
Using EvoTrees.jl for multi-target regression problems #217
Comments
This is an example with random forests that shows something similar in ScikitLearn. |
Hello!
|
Hi, I think that in general allowing for weighted losses would be better. In my case, I would need a simple average. In terms of use cases, there may be situations in which you'd like to predict a series of targets from the same set of features and model. For instance, this is somewhat common in economics and finance. |
Hi,
Q1: I have seen that this package supports multi-class problems. I was wondering if there is also a way to use it for multi-target regression problems. For instance, if you would like to predict two variables and using some multivariate squared error loss (e.g., the average MSE over the targets). I have tried setting
y_train
to be aVector{Vector{Float64}}
but it errors out in fit.jl:53 using:Q2: Is it possible to use custom loss functions for multi-target regression problems provided that they are twice differentiable?
Thanks!
The text was updated successfully, but these errors were encountered: