precision and recall value for different threshold(confidence) for each class #1953
Unanswered
muttahirul
asked this question in
Q&A
Replies: 2 comments 4 replies
-
@muttahirul P, R, F1 and PR curves are produced automatically on final validation after training or when running val directly. These plots are saved to the your runs directory indicated at the end of training/val. |
Beta Was this translation helpful? Give feedback.
3 replies
-
@glenn-jocher How could I plots the P,R,F1 and PR curves using shape marker instead of color marker? As I need to print these plot in a black and white paper, color marker will not be distinguishable. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello good people, I trained my custom dataset on yolov8 and the saved output result accuracy metric for each class are like this:
Class Images Instances Box(P R mAP50 m
all 610 4440 0.588 0.428 0.467 0.299
auto rickshaw 610 91 0.786 0.363 0.42 0.26
bicycle 610 91 0.463 0.209 0.245 0.113
bus 610 618 0.688 0.558 0.606 0.393
car 610 890 0.658 0.634 0.665 0.449
But I want to plot precision-recall curve, precision-confidence curve and recall-confidence curve. For this I need precision and recall value for each class at different threshold(or, confidence).
how do I get precision and recall value for different threshold for each class in yolov8?
Beta Was this translation helpful? Give feedback.
All reactions