-
Notifications
You must be signed in to change notification settings - Fork 156
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
implement functionality for measures search. #957
Comments
Okay this design won't do because of ambiguity with
|
Another nice enhancement would be to allow kwargs for searching over trait values, as in models() do m
m.package_name(m) == ScikitLearn" &&
m.is_supervised
end |
Is your feature request related to a problem? Please describe.
It would be great to have built into MLJ a way for searching measures suitable to a given predictions
yhat
and targety
, similar to the model searching functionality already implemented.Describe the solution you'd like
So I propose something along these lines,
measures(matching(yhat, y))
, which would return a list of measures that can be used suitable for predictionsyhat
and targety
.The text was updated successfully, but these errors were encountered: