leeyegy / SimCC

[ECCV'2022 Oral] PyTorch implementation for: SimCC: a Simple Coordinate Classification Perspective for Human Pose Estimation (http://arxiv.org/abs/2107.03332). Old name: SimDR
317 stars 29 forks source link

请问resnet50 kl loss 256*192配置 #9

Closed zonghaofan closed 2 years ago

zonghaofan commented 2 years ago

我用resnet50 kl loss 256*192 sigma=1训练出来ap是0.685,没有文章0.71高。

leeyegy commented 2 years ago

Could you provide more details you are using? The recommended setting is in experiments/coco/resnet/simdr/original/nmt_res50_256x192_d256x3_adam_lr1e-3_deconv3_split2.yaml. The parameter sigma should do nothing with the proposed method.

zonghaofan commented 2 years ago

Could you provide more details you are using? The recommended setting is in experiments/coco/resnet/simdr/original/nmt_res50_256x192_d256x3_adam_lr1e-3_deconv3_split2.yaml. The parameter sigma should do nothing with the proposed method.

AUTO_RESUME: true CUDNN: BENCHMARK: true DETERMINISTIC: false ENABLED: true DATA_DIR: '' GPUS: (0,1,2,3) OUTPUT_DIR: 'output' LOG_DIR: 'log' WORKERS: 24 PRINT_FREQ: 20

DATASET: COLOR_RGB: false DATASET: 'coco' ROOT: '/share/public/coco-icp' TEST_SET: 'val2017' TRAIN_SET: 'train2017' FLIP: true ROT_FACTOR: 40 SCALE_FACTOR: 0.3 MODEL: NAME: 'pose_resnet_upfree' SIMDR_SPLIT_RATIO: 2.0 HEAD_INPUT: 1344 PRETRAINED: '/data/pretrained/imagenet/resnet50-19c8e357.pth' IMAGE_SIZE:

leeyegy commented 2 years ago

The paper result 71.4 AP can be reproduced by using the recommended setting(experiments/coco/resnet/simdr/original/nmt_res50_256x192_d256x3_adam_lr1e-3_deconv3_split2.yaml), which keeps the three-layers deconvolutional modules.

leeyegy commented 2 years ago

It seems that the yaml file you are using has been changed a lot. For example, the FLIP_TEST should be set as TRUE, which may affect the performance. AND, if you want to reproduce the 70.8 AP(the version without any deconvolutional module), we recommend you to follow the setting in experiments/coco/resnet/simdr/upsample_free/nmt_res50_256x192_d256x3_adam_lr1e-3_split_2_cpj28.yaml

zonghaofan commented 2 years ago

It seems that the yaml file you are using has been changed a lot. For example, the FLIP_TEST should be set as TRUE, which may affect the performance. AND, if you want to reproduce the 70.8 AP(the version without any deconvolutional module), we recommend you to follow the setting in experiments/coco/resnet/simdr/upsample_free/nmt_res50_256x192_d256x3_adam_lr1e-3_split_2_cpj28.yaml

ok thanks

leeyegy commented 2 years ago

Feel free to reopen this issue, if there is any problems in reproducing.