(shape, **kwargs)
| 50 | |
| 51 | |
| 52 | def glorot_uniform(shape, **kwargs): |
| 53 | fan_in, fan_out = _glorot_fan(shape) |
| 54 | s = np.sqrt(6.0 / (fan_in + fan_out)) |
| 55 | return uniform(shape, s) |
| 56 | |
| 57 | |
| 58 | def he_normal(shape, **kwargs): |
nothing calls this directly
no test coverage detected