alexgkendall / caffe-posenet

Implementation of PoseNet
Other
496 stars 204 forks source link

Inquiry about the result with the uploaded pre-trained models #1

Closed lim0606 closed 8 years ago

lim0606 commented 8 years ago

Hi, this is Jaehyun Lim

First of all, thank you for sharing your work :)

I tried to run the posenets with the uploaded pretrained models by using the provided caffe version of yours.

However, the performance (median error) of the posenets with following settings and the pretrained models does not match with the reported performance in your paper.

I got

I further tried followings;

I would appreciate if you give me some advises about possible mistakes that I might make.

Sincerely,

Jaehyun

alexgkendall commented 8 years ago

Hi Jaehyun,

I've just looked into this and found there was a bug in the dataset creation script - sorry! I've just pushed an update to the code to fix this. Essentially there was a discrepancy between how scipy and opencv import image data. For my PoseNet work I used opencv, so I've changed the script to reflect this.

You will need to:

  1. get the latest code
  2. create new LMDB datasets using the new script
  3. compute new dataset mean files
  4. retest using these

Let me know how this works, you should be able to reproduce the figures in the ICCV paper.

Alex

lim0606 commented 8 years ago

Hi, @alexgkendall

Thank you for your kind response!

I re-converted lmdb data set as you commented, and it works really well :)

For non-bayesian and single center crop inference, I got

For bayesian inference (I'm not sure the uploaded weights were trained in this fashion, but I just ran it for fun)

Once again, thank you for kind response!

Jaehyun

alexgkendall commented 8 years ago

Awesome!