Draw pr curve with provided raw data.
See original GitHub issueHi,
Thanks so much for you to provide so convenient tools to visualize the process for pytorch.
Recently, I want draw the pr curve and other curves with tensorboard by directly provided the precision and recall values. However, I found that the inputs of add_pr_curve
is the predict value and ground truth. It calculated the pr curve by using compute_curve().
Is that possible that add a new interface like add_pr_curve_raw to add pr curve officially by provided the raw data. Just like pr_curve_raw_data_pb in tensorboard.
Thanks so much!
Best wishes,
Issue Analytics
- State:
- Created 6 years ago
- Comments:10 (4 by maintainers)
Top Results From Across the Web
ROC Curves and Precision-Recall Curves for Imbalanced ...
ROC AUC and Precision-Recall AUC provide scores that summarize the curves and can be used to compare classifiers. ROC Curves and ROC AUC...
Read more >On ROC and Precision-Recall curves - Towards Data Science
The advantage of using ROC and PR curves is that they summarise performance information that is relevant to binary classification problems. It ...
Read more >Precision-recall curve - MedCalc statistical software
A precision-recall curve is a plot of the precision (positive predictive value, y-axis) against the recall (sensitivity, x-axis) for different thresholds.
Read more >Introduction to precrec
The plot function outputs ROC and Precision-Recall curves ... The precrec package provides four functions for data preparation.
Read more >Precision-Recall Curves - Medium
In addition to providing functions to calculate AUC-PR, sklearn also provides a function to efficiently plot a precision-recall curve ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@zhanghanbin3159 please check this code
@foreverYoungGitHub how do you draw pr-curve with the precision and recall values? the add_pr_curve_raw function ?