(shape, **kwargs)
| 56 | |
| 57 | |
| 58 | def he_normal(shape, **kwargs): |
| 59 | fan_in, fan_out = _glorot_fan(shape) |
| 60 | s = np.sqrt(2.0 / fan_in) |
| 61 | return normal(shape, s) |
| 62 | |
| 63 | |
| 64 | def he_uniform(shape, **kwargs): |
nothing calls this directly
no test coverage detected