(self, x)
| 51 | ) |
| 52 | |
| 53 | def forward(self, x): |
| 54 | # Inputs are uint8 in [0, 255]; normalize on the GPU to save bus bandwidth. |
| 55 | return self.fc(self.conv(x.float() / 255.0)) |
| 56 | |
| 57 | |
| 58 | class ReplayBuffer: |
nothing calls this directly
no outgoing calls
no test coverage detected