(self, dim, n_class)
| 7 | |
| 8 | class linMod(nn.Module): |
| 9 | def __init__(self, dim, n_class): |
| 10 | super(linMod, self).__init__() |
| 11 | self.dim = dim |
| 12 | self.lm = nn.Linear(int(np.prod(dim)), n_class) |
| 13 | def forward(self, x): |
| 14 | x = x.view(-1, int(np.prod(self.dim))) |
| 15 | out = self.lm(x) |