mattpoggi / mono-uncertainty

CVPR 2020 - On the uncertainty of self-supervised monocular depth estimation
233 stars 24 forks source link

lightweight network for self-teaching #27

Open lnSong opened 1 year ago

lnSong commented 1 year ago

When I use monodepth2 and implement self-teaching, uncertainty does improve the results. But why I use a lightweight network and implement self-teaching, the result is not better but worse?

mattpoggi commented 1 year ago

Can you give more details about the lightweight model and the training protocol (epochs, etc.)?

lnSong commented 1 year ago

I use mobilenet as the backbone, the epoch is 100, and the learning rate is 0.0001. I first train the teacher network, then fix the teacher network, and then use mobilenet with uncertainty prediction branch as the student network. The teacher network is the same as the student network.Thank you!