What would you like to say?
The string produce when selecting some metric the widget Summary does not produce the right string to query the dataset because it is missing the _mean. In pseudo code, one would have something like:
project = skore.Project("xxx")
report = skore.evaluate(model, X, y, splitter=2)
project.put("xxx", report)
display = project.summarize()
display
# show parallel coordinate plot and make a selection
display._query_string_selection()
# the return string will not have the name of metric finishing by
# `_mean`; e.g. `rmse` instead of `rmse_mean`
What would you like to say?
The string produce when selecting some metric the widget
Summarydoes not produce the right string to query the dataset because it is missing the_mean. In pseudo code, one would have something like: