(self, x)
| 49 | bias.uniform_(-w_std, w_std) |
| 50 | |
| 51 | def forward(self, x): |
| 52 | out = F.linear(x, self.weight, self.bias) |
| 53 | if self.dropout: |
| 54 | out = F.dropout(out, training=self.training) |
| 55 | out = self.activation(out) |
| 56 | return out |
| 57 | |
| 58 | # siren network |
| 59 |
nothing calls this directly
no outgoing calls
no test coverage detected