(self, x)
| 145 | self.fc3 = nn.Linear(84, 10) |
| 146 | |
| 147 | def forward(self, x): |
| 148 | x = self.pool(F.relu(self.conv1(x))) |
| 149 | x = self.pool(F.relu(self.conv2(x))) |
| 150 | x = x.view(-1, 16 * 4 * 4) |
| 151 | x = F.relu(self.fc1(x)) |
| 152 | x = F.relu(self.fc2(x)) |
| 153 | x = self.fc3(x) |
| 154 | return x |
| 155 | |
| 156 | |
| 157 | model = GarmentClassifier() |
nothing calls this directly
no outgoing calls
no test coverage detected