Replies: 1 comment
-
please refer to https://mmengine.readthedocs.io/zh_CN/latest/tutorials/evaluation.html test_evaluator = [
# 目标检测指标
dict(
type='COCOMetric',
metric=['bbox', 'segm'],
ann_file='annotations/instances_val2017.json',
),
# 全景分割指标
dict(
type='CocoPanopticMetric',
ann_file='annotations/panoptic_val2017.json',
seg_prefix='annotations/panoptic_val2017',
)
] |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I implement the F1Metric and I want to use F1Metric and CocoMetric at the same time ?
What should I setting ?
Beta Was this translation helpful? Give feedback.
All reactions