Hongyu Pan

Results 32 comments of Hongyu Pan

Another difference about PAF. paper says: ![screen-2017-11-16-20-00-06](https://user-images.githubusercontent.com/9068170/32890273-053ac8a8-cb09-11e7-8453-457e6d7caf60.jpg) the code is: ![screen-2017-11-16-20-03-05](https://user-images.githubusercontent.com/9068170/32890318-3cc7e350-cb09-11e7-99db-b4fa269f6108.jpg) If don't update the value of cnt when cnt = 0. The value of cnt always will be 0....

The mask has been generated. You can generate the file by youself. And you can remove this line.

It needs to be generated by yourself.

I have added the code for generating masklist/train2017.txt. Please see the [script](https://github.com/last-one/Pytorch_Realtime_Multi-Person_Pose_Estimation/blob/master/preprocessing/generate_json_mask.py)

Because the evaluation of my task doesn't use mAP, I didn't write the script. You can see my testing script, which could get the estimated points and edges. Hope it...

If you use one gpu to train and change line 49 "model = torch.nn.DataParallel(model, device_ids=args.gpu).cuda()" to "model = model.cuda()", you're right. Because of torch.nn.DataParallel, it will change "model" to "model.module"...

No, I think. If you find something error, please let me know. Thank you.

Yes. The test and train scripts should be changed. I have mentioned something in README.

The shape of feature (x) and the gt (y), which will be used to calculate the loss, is N * 46 * 46 (if input size is 368, 46 =...