Jialing Lyu

Results 3 comments of Jialing Lyu

self.dec1 = features[0: 4] #[0,3] self.dec2 = features[5: 9] #[5,8] self.dec3 = features[10: 16] #[10,15] self.dec4 = features[17: 23] #[17,22] self.dec5 = features[24: -1] #[24,29] while there's also a maxpool2d...

I'm actually a novice at deep learning, still trying to understand the codes. I guess it will work right only if the range of pretrained layers are set correct (as...

Oh I see the point. in the FCN8 model, self.feats = nn.Sequential(*feats[0:9]) self.feat3 = nn.Sequential(*feats[10:16]) self.feat4 = nn.Sequential(*feats[17:23]) self.feat5 = nn.Sequential(*feats[24:30]) are called later in feats = self.feats(x) feat3 =...