(self, x)
| 37 | self.linears[-1].bias.data.fill_(0.0) |
| 38 | |
| 39 | def forward(self, x): |
| 40 | |
| 41 | for i in range(self.num_layer): |
| 42 | x = self.acts[i](self.linears[i](x)) |
| 43 | |
| 44 | return x |
| 45 | |
| 46 | |
| 47 | class Encoder(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected