MCPcopy Index your code
hub / github.com/tensorflow/tfjs / histogram

Method histogram

tfjs-node/src/tensorboard.ts:75–80  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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.

Callers 2

logWeightsMethod · 0.80

Calls 1

writeHistogramSummaryMethod · 0.80

Tested by

no test coverage detected