* Write a histogram summary, for later analysis in TensorBoard's 'Histograms' * and 'Distributions' dashboards (data written using this API will appear in * both places). Like `SummaryFileWriter.scalar` points, each histogram is * associated with a `step` and a `name`. All the histograms wi
(
name: string, data: Tensor, step: number, buckets?: number,
description?: string)
| 73 | * `string`. Markdown is supported. Defaults to empty. |
| 74 | */ |
| 75 | histogram( |
| 76 | name: string, data: Tensor, step: number, buckets?: number, |
| 77 | description?: string) { |
| 78 | this.backend.writeHistogramSummary( |
| 79 | this.resourceHandle, step, name, data, buckets, description); |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Force summary writer to send all buffered data to storage. |
no test coverage detected