-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Feature: support plotting custom curves over time #6007
Comments
Hi @domef, I think the |
This is not what I'm looking for. I need the slider of the steps so that I can see how to the curve changes over time. |
One workaround would be to save the curve as an image at each step, which should allow you to step through each curve in the time series dashboard. I will leave this issue open for others to comment or +1 and we can see if many users are asking for this feature. |
Yep, already thought of that, and in fact we are currently plotting the curves with matplotlib.pyplot and logging the figure as an image, but this practice is cursed, here is some additional motivation on why this feature may be useful to have:
It also seems to me that you already have all the necessary components to easily implement the logging of custom curves. After all, you already have tools to visualize/interact with 2D plots, even plots with non-temporal values as x-axis, like in the PR curves plugin. |
We appreciate the additional feedback, it definitely helps as we try and prioritize work. I've converted this to a feature request. |
A few previous instances of this request:
Barring any objections we should probably consolidate these into a single issue for tracking. I was hoping to tackle this as part of revamping the PR curves summary API for TF 2.0 compatibility (#2902) but we didn't get that far at that point. I agree this would significantly increase the utility of the PR curves dashboard. |
What's the status of this update |
I need to plot custom curves that change over time (at each step I have a different curve). There is the plugin
pr_curve
that has this feature: you have a slider for the steps and at each step you have a different curve.But there is a big problem, this plugin actually computes and plots only precision-recall curves. Why are these features coupled?
Is there a way to plot custom curves over time?
The text was updated successfully, but these errors were encountered: