few-shot-gnn
few-shot-gnn copied to clipboard
Adding Resnet Basic Block Support
-
replacing
conv2,conv3,conv4
tolayer2 ,layer3 ,layer4
-
changing the
fc_last
layer tofc_last2
with shape from3 * 3
to2*2
andx = x.view(-1, 2 * 2 * self.nef)
was changed fromx = x.view(-1, 3 * 3 * self.nef)
as well