thohemp / 6DRepNet

Official Pytorch implementation of 6DRepNet: 6D Rotation representation for unconstrained head pose estimation.
MIT License
550 stars 72 forks source link

Why did you set up the scheduler as MultiStepLR=False? #45

Closed Algabri closed 1 year ago

Algabri commented 1 year ago

I am not an expert on a scheduler, but I tried to understand it through this one.

Why did you set up the scheduler as MultiStepLR=False?

I guess that is meaningless if we set up the scheduler as MultiStepLR=False.

Please, explain to me if I understood it wrong.

thohemp commented 1 year ago

You are correct. The scheduler is not used in training. It had no impact on the final accuracy of our model when we tested different configurations, so we deactivated it.

Algabri commented 1 year ago

@thohemp Thank you so much for your answer.