MichaelRamamonjisoa / SharpNet

SharpNet: Fast and Accurate Recovery of Occluding Contours in Monocular Depth Estimation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Optimizer and Weight decay

nw89 opened this issue · comments

commented

Regarding 6.4 in the paper, do you use actual weight decay or a simple L^2 regularisation term on the weights? Is the optimizer ordinary SGD or something like Adam?

I used SGD optimizer with learning rate decay such that learning_rate = learning_rate * (1 - epoch /max_epoch) ^ 0.9, weight_decay=2e-6 (typically) and momentum=0.9.

The optimizer I used is SGD.

commented

Brilliant, thank you very much!