-
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] Add new feature_processing field to Data frame analytics config #59327
Labels
Comments
Pinging @elastic/ml-core (:ml) |
benwtrent
added a commit
that referenced
this issue
Aug 14, 2020
feature_processors allow users to create custom features from individual document fields. These `feature_processors` are the same object as the trained model's pre_processors. They are passed to the native process and the native process then appends them to the pre_processor array in the inference model. closes #59327
benwtrent
added a commit
to benwtrent/elasticsearch
that referenced
this issue
Aug 14, 2020
…tic#60528) feature_processors allow users to create custom features from individual document fields. These `feature_processors` are the same object as the trained model's pre_processors. They are passed to the native process and the native process then appends them to the pre_processor array in the inference model. closes elastic#59327
benwtrent
added a commit
that referenced
this issue
Aug 14, 2020
…) (#61148) feature_processors allow users to create custom features from individual document fields. These `feature_processors` are the same object as the trained model's pre_processors. They are passed to the native process and the native process then appends them to the pre_processor array in the inference model. closes #59327
61 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Data frame analytics jobs should handle a new configuration field called
feature_processing
.This field will be an array of
PreProcessor
objects.Requirements:
feature_processing
array gets serialized as a parameter to the analysis native processfeature_processing
processorsThe text was updated successfully, but these errors were encountered: