From 2b89634fcf2f7b93d6627cb0628e9fb585671fe6 Mon Sep 17 00:00:00 2001 From: Wenwei Zhang <40779233+ZwwWayne@users.noreply.github.com> Date: Thu, 21 Nov 2019 22:33:41 +0800 Subject: [PATCH] add class-wise doc (#1686) --- docs/GETTING_STARTED.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/GETTING_STARTED.md b/docs/GETTING_STARTED.md index 68a54cb..77eb714 100644 --- a/docs/GETTING_STARTED.md +++ b/docs/GETTING_STARTED.md @@ -209,6 +209,16 @@ average iter time: 1.1959 s/iter ``` +### Analyse Class-Wise Performance + +You can analyse the class-wise mAP to have a more comprehensive understanding of the model. + +```shell +python coco_eval.py ${RESULT} --ann ${ANNOTATION_PATH} --types bbox --classwise +``` + +Now we only support class-wise mAP for all the evaluation types, we will support class-wise mAR in the future. + ### Get the FLOPs and params (experimental) We provide a script adapted from [flops-counter.pytorch](https://github.com/sovrasov/flops-counter.pytorch) to compute the FLOPs and params of a given model. -- GitLab