(self, x)
| 128 | return seq_block |
| 129 | |
| 130 | def forward(self, x): |
| 131 | |
| 132 | x = self.conv1(x) |
| 133 | x = self.maxpool(x) |
| 134 | |
| 135 | x = self.conv2(x) |
| 136 | |
| 137 | x = self.conv3(x) |
| 138 | x = self.maxpool(x) |
| 139 | |
| 140 | x = self.lastcnn(x) |
| 141 | |
| 142 | return x |
| 143 | |
| 144 | |
| 145 | class Light_Dataset(CsgoDataset): |
nothing calls this directly
no outgoing calls
no test coverage detected