(step: number)
| 293 | } |
| 294 | |
| 295 | private logWeights(step: number) { |
| 296 | for (const weights of this.model.weights) { |
| 297 | this.trainWriter.histogram(weights.name, weights.read(), step); |
| 298 | } |
| 299 | } |
| 300 | |
| 301 | private ensureTrainWriterCreated() { |
| 302 | this.trainWriter = summaryFileWriter(path.join(this.logdir, 'train')); |
no test coverage detected