franzi2505 commited on
Commit
bff0759
·
verified ·
1 Parent(s): ccb23fb

Update README.md

Browse files

fix incomplete example

Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -183,7 +183,11 @@ We can specify different area range levels, at which we would like to compute th
183
  gt_field=gt_field,
184
  models=model_list
185
  )
186
- >>> module = evaluate.load("./detection_metric.py", iou_thresholds=0.9)
 
 
 
 
187
  >>> module.add_batch(payload)
188
  >>> result = module.compute()
189
  >>> print(result)
 
183
  gt_field=gt_field,
184
  models=model_list
185
  )
186
+ >>> module = evaluate.load(
187
+ "./detection_metric.py",
188
+ iou_thresholds=0.9,
189
+ area_ranges_tuples=area_ranges_tuples
190
+ )
191
  >>> module.add_batch(payload)
192
  >>> result = module.compute()
193
  >>> print(result)