LiMeng95 / MultiPoseNet.pytorch

pytorch implementation of MultiPoseNet (ECCV 2018, Muhammed Kocabas et al.)
196 stars 32 forks source link

Inference time and running on CPU #13

Closed karimamd closed 5 years ago

karimamd commented 5 years ago

Hello, You have made a great implementation. I have 2 questions please how much frame rate did you produce for a video and can this model be tested on a CPU with no GPUs ?

LiMeng95 commented 5 years ago

@karimamd Thanks for your question.

  1. With one GTX1080Ti, the version 686b9a4 can run at 10 fps. We are trying to upgrade the code to increase the frame rate.

  2. Yes, this model can be tested without a GPU, but version 686b9a4 don't support CPU-only mode now. If your want, you can try deleting the '.cuda()' on Line 127/212/291/403 in the tester.py file.