MCPcopy Create free account
hub / github.com/tensorflow/tensorboard / createHistogramStepData

Function createHistogramStepData

tensorboard/webapp/metrics/testing.ts:224–242  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

222}
223
224export function createHistogramStepData(): HistogramStepDatum[] {
225 return [
226 buildHistogramStepData({
227 step: 0,
228 wallTime: 123,
229 bins: [{min: 0, max: 100, count: 42}],
230 }),
231 buildHistogramStepData({
232 step: 1,
233 wallTime: 124,
234 bins: [{min: 0, max: 100, count: 42}],
235 }),
236 buildHistogramStepData({
237 step: 99,
238 wallTime: 125,
239 bins: [{min: 0, max: 100, count: 42}],
240 }),
241 ];
242}
243
244export function createImageStepData(): ImageStepDatum[] {
245 return [

Callers 3

createStepDataFunction · 0.85
createTimeSeriesDataFunction · 0.85

Calls 1

buildHistogramStepDataFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…