()
| 484 | } |
| 485 | |
| 486 | override getConfig(): serialization.ConfigDict { |
| 487 | const config: serialization.ConfigDict = { |
| 488 | kernelSize: this.kernelSize, |
| 489 | strides: this.strides, |
| 490 | padding: this.padding, |
| 491 | dataFormat: this.dataFormat, |
| 492 | dilationRate: this.dilationRate, |
| 493 | activation: serializeActivation(this.activation), |
| 494 | useBias: this.useBias, |
| 495 | biasInitializer: serializeInitializer(this.biasInitializer), |
| 496 | biasRegularizer: serializeRegularizer(this.biasRegularizer), |
| 497 | activityRegularizer: serializeRegularizer(this.activityRegularizer), |
| 498 | biasConstraint: serializeConstraint(this.biasConstraint) |
| 499 | }; |
| 500 | const baseConfig = super.getConfig(); |
| 501 | Object.assign(config, baseConfig); |
| 502 | return config; |
| 503 | } |
| 504 | } |
| 505 | |
| 506 | /** |
nothing calls this directly
no test coverage detected
searching dependent graphs…