(shape, **kwargs)
| 44 | |
| 45 | |
| 46 | def glorot_normal(shape, **kwargs): |
| 47 | fan_in, fan_out = _glorot_fan(shape) |
| 48 | s = np.sqrt(2.0 / (fan_in + fan_out)) |
| 49 | return normal(shape, s) |
| 50 | |
| 51 | |
| 52 | def glorot_uniform(shape, **kwargs): |
nothing calls this directly
no test coverage detected