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
The implement uses init_weight to load the pretrained model. However, you use nn.Sequential to repackage the nn.Modules.
So, the code has two sets of parmaters, and you only load weight to the first sets. That is, the second set (for segmentation) are trained from scratch.
The text was updated successfully, but these errors were encountered:
The implement uses init_weight to load the pretrained model. However, you use nn.Sequential to repackage the nn.Modules.
So, the code has two sets of parmaters, and you only load weight to the first sets. That is, the second set (for segmentation) are trained from scratch.
The text was updated successfully, but these errors were encountered: