(logs?: UnresolvedLogs)
| 293 | history: {[key: string]: Array<number|Tensor>}; |
| 294 | |
| 295 | override async onTrainBegin(logs?: UnresolvedLogs) { |
| 296 | this.epoch = []; |
| 297 | this.history = {}; |
| 298 | } |
| 299 | |
| 300 | override async onEpochEnd(epoch: number, logs?: UnresolvedLogs) { |
| 301 | if (logs == null) { |
no outgoing calls
no test coverage detected