-
Notifications
You must be signed in to change notification settings - Fork 25k
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] Adding failed_category_count to model_size_stats #55716
[ML] Adding failed_category_count to model_size_stats #55716
Conversation
The failed_category_count statistic records the number of times categorization wanted to create a new category but couldn't because the job had reached its model_memory_limit. Relates elastic/ml-cpp#1130
Pinging @elastic/ml-core (:ml) |
docs/reference/ml/ml-shared.asciidoc
Outdated
@@ -603,6 +603,17 @@ If `true`, the output excludes interim results. By default, interim results are | |||
included. | |||
end::exclude-interim-results[] | |||
|
|||
tag::failed-category-count[] | |||
The number of times that categorization wanted to create a new category but | |||
couldn't because the job had hit its `model_memory_limit`. This number can |
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.
This number can be higher... could be anywhere between 1 and failed-category-count.
Is this a really important detail that folks are likely to be confused about? If not, I think those sentences could be shortened to something like this:
This count does not track which specific categories failed to be created.
If we need to explain why that's important, perhaps another sentence could be added like this: Therefore you cannot use this value to determine the number of unique categories that were missed(?).
The failed_category_count statistic records the number of times categorization wanted to create a new category but couldn't because the job had reached its model_memory_limit. Backport of elastic#55716
The failed_category_count statistic records the number of times categorization wanted to create a new category but couldn't because the job had reached its model_memory_limit. Backport of #55716
Relates: elastic/elasticsearch#55716, #4803 This commit adds FailedCategoryCount to ModelSizeStats and adds other missing fields to JobStats
Relates: elastic/elasticsearch#55716, #4803 This commit adds FailedCategoryCount to ModelSizeStats and adds other missing fields to JobStats
Relates: elastic/elasticsearch#55716, #4803 This commit adds FailedCategoryCount to ModelSizeStats and adds other missing fields to JobStats
Relates: elastic/elasticsearch#55716, #4803 This commit adds FailedCategoryCount to ModelSizeStats and adds other missing fields to JobStats
Relates: elastic/elasticsearch#55716, #4803 This commit adds FailedCategoryCount to ModelSizeStats and adds other missing fields to JobStats Co-authored-by: Russ Cam <[email protected]>
Relates: elastic/elasticsearch#55716, #4803 This commit adds FailedCategoryCount to ModelSizeStats and adds other missing fields to JobStats Co-authored-by: Russ Cam <[email protected]>
The failed_category_count statistic records the number of times
categorization wanted to create a new category but couldn't
because the job had reached its model_memory_limit.
Relates elastic/ml-cpp#1130