()
| 195 | } |
| 196 | |
| 197 | getConfig(): ConfigDict { |
| 198 | return { |
| 199 | 'learningRate': this.learningRate, |
| 200 | 'decay': this.decay, |
| 201 | 'momentum': this.momentum, |
| 202 | 'epsilon': this.epsilon, |
| 203 | 'centered': this.centered |
| 204 | }; |
| 205 | } |
| 206 | |
| 207 | /** @nocollapse */ |
| 208 | static override fromConfig<T extends Serializable>( |
nothing calls this directly
no outgoing calls
no test coverage detected