Skip to content

Commit

Permalink
Adjust legend labels for classes without instances (ultralytics#5174)
Browse files Browse the repository at this point in the history
* legend-labels Adjust legend labels for classes without instances.

* ultralytics#5158 Re-indexed series names: only classes containing data.

* ultralytics#5158 Re-indexed series names: only classes containing data.

* Cleanup

Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
  • Loading branch information
NauchtanRobotics and glenn-jocher committed Oct 14, 2021
1 parent 5563986 commit 8d97a01
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions utils/metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ def ap_per_class(tp, conf, pred_cls, target_cls, plot=False, save_dir='.', names

# Compute F1 (harmonic mean of precision and recall)
f1 = 2 * p * r / (p + r + 1e-16)
names = [v for k, v in names.items() if k in unique_classes] # list: only classes that have data
names = {i: v for i, v in enumerate(names)} # to dict
if plot:
plot_pr_curve(px, py, ap, Path(save_dir) / 'PR_curve.png', names)
plot_mc_curve(px, f1, Path(save_dir) / 'F1_curve.png', names, ylabel='F1')
Expand Down

0 comments on commit 8d97a01

Please sign in to comment.