(model: Container)
| 21 | model: LayersModel = null; |
| 22 | |
| 23 | override setModel(model: Container): void { |
| 24 | if (!(model instanceof LayersModel)) { |
| 25 | throw new Error('model must be a LayersModel, not some other Container'); |
| 26 | } |
| 27 | this.model = model; |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | export interface EarlyStoppingCallbackArgs { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…