Detectron: evaluation of kps

Created on 19 Jun 2018  路  1Comment  路  Source: facebookresearch/Detectron

I trained a model of keypoints detection with own datasets. reval.py is used to evaluate the mAP of results. I found compute_oks set
sigmas = np.array([.26, .25, .25, .35, .35, .79, .79, .72, .72, .62,.62, 1.07, 1.07, .87, .87, .89, .89])/10.0
How could I recompute the sigmas ? @rbgirshick

Most helpful comment

@jinxuan777
keypoints.py reads
https://github.com/facebookresearch/Detectron/blob/e5bb3a8ff0b9caf59c76037726f49465d6b9678b/detectron/utils/keypoints.py#L16
so the OKS(Object Keypoint Similarity) is defined here http://cocodataset.org/#keypoints-eval

The sigmas used to compute it are defined in the page

As discussed, we set 魏i=2蟽i for each keypoint type i. For people, the 蟽's are .026, .025, .035, .079, .072, .062, .107, .087, & .089 for the nose, eyes, ears, shoulders, elbows, wrists, hips, knees, & ankles, respectively.

and the procedure used to obtain them is detailed in 1.3. Tuning OKS.

>All comments

@jinxuan777
keypoints.py reads
https://github.com/facebookresearch/Detectron/blob/e5bb3a8ff0b9caf59c76037726f49465d6b9678b/detectron/utils/keypoints.py#L16
so the OKS(Object Keypoint Similarity) is defined here http://cocodataset.org/#keypoints-eval

The sigmas used to compute it are defined in the page

As discussed, we set 魏i=2蟽i for each keypoint type i. For people, the 蟽's are .026, .025, .035, .079, .072, .062, .107, .087, & .089 for the nose, eyes, ears, shoulders, elbows, wrists, hips, knees, & ankles, respectively.

and the procedure used to obtain them is detailed in 1.3. Tuning OKS.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

elfpattern picture elfpattern  路  3Comments

realwecan picture realwecan  路  3Comments

gaopeng-eugene picture gaopeng-eugene  路  4Comments

kampelmuehler picture kampelmuehler  路  4Comments

743341 picture 743341  路  4Comments