(args?: SeedOnlyInitializerArgs)
| 435 | static override className = 'HeNormal'; |
| 436 | |
| 437 | constructor(args?: SeedOnlyInitializerArgs) { |
| 438 | super({ |
| 439 | scale: 2.0, |
| 440 | mode: 'fanIn', |
| 441 | distribution: 'normal', |
| 442 | seed: args == null ? null : args.seed |
| 443 | }); |
| 444 | } |
| 445 | |
| 446 | override getClassName(): string { |
| 447 | // In Python Keras, HeNormal is not a class, but a helper method |
nothing calls this directly
no outgoing calls
no test coverage detected