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
When I try to replicate your convnet; namely: "conv-large" the network did not work at all. Here, I am copying my code for conv-large in PyTorch. I would appreciate if you can give me a feedback on what might be wrong.
import torch.nn as nn
import torch.nn.functional as F
class conv_large(nn.Module):
def init(self):
super(conv_large, self).init()
x = self.bn128(x); x = self.lr(x)
x = self.conv128_128_3_1(x);
x = self.bn128(x); x = self.lr(x)
x = self.conv128_128_3_1(x); x = self.bn128(x); x = self.lr(x)
x = self.mp2_2(x);
x = self.drop(x)
x = self.conv128_256_3_1(x);
x = self.bn256(x);
x = self.lr(x)
x = self.conv256_256_3_1(x);
x = self.bn256(x); x = self.lr(x)
x = self.conv256_256_3_1(x);
x = self.bn256(x); x = self.lr(x)
x = self.mp2_2(x);
x = self.drop(x)
x = self.conv256_512_3_1(x);
x = self.bn512(x); x = self.lr(x)
x = self.conv512_256_1_1(x);
x = self.bn256(x); x = self.lr(x)
x = self.conv256_128_1_1(x);
x = self.bn128(x); x = self.lr(x)
x = self.avg(x)
x = x.view(x.size(0),-1)
x = self.fc(x)
return x
The text was updated successfully, but these errors were encountered:
Hi,
I am trying to implement conv-large in PyTorch.
When I try to replicate your convnet; namely: "conv-large" the network did not work at all. Here, I am copying my code for conv-large in PyTorch. I would appreciate if you can give me a feedback on what might be wrong.
import torch.nn as nn
import torch.nn.functional as F
class conv_large(nn.Module):
def init(self):
super(conv_large, self).init()
def forward(self, x):
x = self.conv3_128_3_1(x);
The text was updated successfully, but these errors were encountered: