You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are currently training the model as is with all layers unfrozen.
We should investigate if freezing the ResNet encoder and running a few warmup epochs to initialize the decoder layers (then unfreezing parts or all of the ResNet) helps.
Here is how we can freeze the encoder - unfreezing works similarly:
At the moment we are using a pre-trained ResNet as an encoder in our encoder-decoder architecture:
robosat/robosat/unet.py
Lines 94 to 100 in 8b7566e
robosat/robosat/unet.py
Lines 123 to 134 in 8b7566e
We are currently training the model as is with all layers unfrozen.
We should investigate if freezing the ResNet encoder and running a few warmup epochs to initialize the decoder layers (then unfreezing parts or all of the ResNet) helps.
Here is how we can freeze the encoder - unfreezing works similarly:
The text was updated successfully, but these errors were encountered: