cvlab-epfl / segmentation-driven-pose

Segmentation-driven 6D Object Pose Estimation. CVPR 2019.
GNU General Public License v3.0
184 stars 37 forks source link

About hyperparameters #2

Closed alen0216056 closed 5 years ago

alen0216056 commented 5 years ago

Hello, I am trying to implement this work according to the paper, but I don't know the value of some hyperparameters. Can you provide the value of 'tau' used in the confidence loss and the value of 'beta' and 'gamma' used in the regression loss? Thank you very much :)

YinlinHu commented 5 years ago

Great, Thanks for your interests in our work. if the total loss expressed as L=aL(class)+bL(position)+cL(confidence), the a,b,c have values close to 0.05, 0.01, 0.001. While we did not put much efforts into fine-tuning the network. Maybe you can find more suitable values.

sjtuytc commented 5 years ago

we use the same loss hyperparameters and find that the position loss and confidence loss don't appear to reduce.

alen0216056 commented 5 years ago

In my implementation, I used 50, 10, 1 as the loss hyperparameters respectively. The ratio between my loss hyperparameters is as same as those provided by the author. I think the exact value of hyperparameters is depend on your implementation, you can observe the trend of the loss curve and try to set a proper value.