()
| 488 | } |
| 489 | |
| 490 | override getClassName(): string { |
| 491 | // In Python Keras, LeCunNormal is not a class, but a helper method |
| 492 | // that creates a VarianceScaling object. Use 'VarianceScaling' as |
| 493 | // class name to be compatible with that. |
| 494 | return VarianceScaling.className; |
| 495 | } |
| 496 | } |
| 497 | serialization.registerClass(LeCunNormal); |
| 498 |
nothing calls this directly
no outgoing calls
no test coverage detected