()
| 444 | } |
| 445 | |
| 446 | override getClassName(): string { |
| 447 | // In Python Keras, HeNormal is not a class, but a helper method |
| 448 | // that creates a VarianceScaling object. Use 'VarianceScaling' as |
| 449 | // class name to be compatible with that. |
| 450 | return VarianceScaling.className; |
| 451 | } |
| 452 | } |
| 453 | serialization.registerClass(HeNormal); |
| 454 |
nothing calls this directly
no outgoing calls
no test coverage detected