Skip to content

Commit

Permalink
Remove old argument from evaluate_image docs example (#452)
Browse files Browse the repository at this point in the history
show_plot hasn't been available since it was removed in 665c6d8
  • Loading branch information
ethanwhite committed Jul 12, 2023
1 parent 70c6644 commit 1f7c9f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Evaluation.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ We tested a range of overlap thresholds from 0.3 (less overlap among matching cr
After computing the IoU for the ground truth data, we get the resulting dataframe.

```
result = evaluate.evaluate_image(predictions=predictions, ground_df=ground_truth, show_plot=True, root_dir=os.path.dirname(csv_file), savedir=None)
result = evaluate.evaluate_image(predictions=predictions, ground_df=ground_truth, root_dir=os.path.dirname(csv_file), savedir=None)
result.head()
prediction_id truth_id IoU predicted_label true_label
90 90 0 0.059406 Tree Tree
Expand Down

0 comments on commit 1f7c9f3

Please sign in to comment.