You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From what I understand, this is due to the fact that the TopKMetrics data are panda series showing the evolution of the metric with k ranging from 1 to 10 (useful for showing the curve). But it seems that, when building the Panel, there's no access to fetch the metric at the k I specified when creating my report metrics.MAPKMetric(4),. So, no float available when I do field_path=metrics.MAPKMetric.fields.... only a Series, which seems to broke the dashboard ui
The text was updated successfully, but these errors were encountered:
In my project, I'm trying to set up a dashboard to display metrics for a search engine (ranking).
Here's a minimal example:
Let's add a dashboard like this:
If I now run
evidently ui --workspace “./workspace_evidently”
and go to the “Dashboard” page, I get the following error:From what I understand, this is due to the fact that the TopKMetrics data are panda series showing the evolution of the metric with k ranging from 1 to 10 (useful for showing the curve). But it seems that, when building the Panel, there's no access to fetch the metric at the k I specified when creating my report
metrics.MAPKMetric(4),
. So, no float available when I dofield_path=metrics.MAPKMetric.fields....
only a Series, which seems to broke the dashboard uiThe text was updated successfully, but these errors were encountered: