HRNet / HigherHRNet-Human-Pose-Estimation

This is an official implementation of our CVPR 2020 paper "HigherHRNet: Scale-Aware Representation Learning for Bottom-Up Human Pose Estimation" (https://arxiv.org/abs/1908.10357)
MIT License
1.32k stars 272 forks source link

Get stacked when running test code #12

Open mitumao-DD opened 4 years ago

mitumao-DD commented 4 years ago

when I run the code :

python tools/valid.py --cfg experiments/coco/higher_hrnet/w32_512_adam_lr1e-3.yaml TEST.MODEL_FILE checkpoints/pose_higher_hrnet_w32_512.pth

Then I get stacked. Memory and GPU still have much free 2019-12-12 21-26-14屏幕截图

And I found the following print. What is the meaning of not avaliable ? Looking forward replay! Thanks! 2019-12-12 21-42-31屏幕截图

bowenc0221 commented 4 years ago

Grouping is done on CPU. Not available means FLOPs is not calculated for this layer (which is ReLU).

Dantju commented 4 years ago

I met the same problem,it stop at 》classes :['backgroud','person']

YinXiaojieCSDN commented 4 years ago

I met the same problem,it stop at 》classes :['backgroud','person']

have you solve it?