Skip to content

Commit

Permalink
Style clean up (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
henrykironde committed Oct 1, 2023
1 parent 1f7c9f3 commit e314804
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepforest/evaluate.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def evaluate(predictions, ground_df, root_dir, iou_threshold=0.4, savedir=None):
box_recall = np.mean(box_recalls)

# Only matching boxes are considered in class recall
matched_results = results[results.match==True]
matched_results = results[results.match == True]
class_recall = compute_class_recall(matched_results)

return {
Expand Down

0 comments on commit e314804

Please sign in to comment.