(self, x)
| 80 | self.convs.apply(init_weights) |
| 81 | |
| 82 | def forward(self, x): |
| 83 | for c in self.convs: |
| 84 | xt = F.leaky_relu(x, LRELU_SLOPE) |
| 85 | xt = c(xt) |
| 86 | x = xt + x |
| 87 | return x |
| 88 | |
| 89 | def remove_weight_norm(self): |
| 90 | for l in self.convs: |
nothing calls this directly
no outgoing calls
no test coverage detected