-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
[ML] adds feature_importance_baseline object to model metadata #63172
[ML] adds feature_importance_baseline object to model metadata #63172
Conversation
Pinging @elastic/ml-core (:ml) |
@elasticmachine update branch |
…ics-feature-importance-baseline
run elasticsearch-ci/2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
private static final String NAME = "feature_importance_class_baseline"; | ||
|
||
public static final ParseField CLASS_NAME = new ParseField("class_name"); | ||
public static final ParseField BASELINE = new ParseField("baseline"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: you could reuse the BASELINE
parsefield defined in the parent class
…ic#63172) this adds the new field `feature_importance_baseline` and allows it to be optionally be included in the model's metadata. Related to: elastic/ml-cpp#1522
… (#63237) this adds the new field `feature_importance_baseline` and allows it to be optionally be included in the model's metadata. Related to: elastic/ml-cpp#1522
this adds the new field
feature_importance_baseline
and allows it to be optionally be included in the model's metadata.