(x)
| 10 | device = torch.device("cuda" if torch.cuda.is_available() else "cpu") |
| 11 | |
| 12 | def normalize(x): |
| 13 | return (x - x.min()) / (x.max() - x.min()) |
| 14 | |
| 15 | class mySequential(nn.Sequential): |
| 16 | def forward(self, *input, **kwargs): |
no outgoing calls
no test coverage detected