(m)
| 11 | |
| 12 | |
| 13 | def init_weights_normal(m): |
| 14 | if type(m) == nn.Linear: |
| 15 | if hasattr(m, 'weight'): |
| 16 | nn.init.kaiming_normal_(m.weight, a=0.0, nonlinearity='relu', mode='fan_out') |
| 17 | |
| 18 | |
| 19 | def init_weights_selu(m): |
nothing calls this directly
no outgoing calls
no test coverage detected