wandb.data_types.Histogram
Last updated
Last updated
wandb class for histograms.
This object works just like numpy's histogram function https://docs.scipy.org/doc/numpy/reference/generated/numpy.histogram.html
Generate histogram from a sequence
Efficiently initialize from np.histogram.
Arguments | |
| (array_like) input data for histogram |
| (numpy histogram) alternative input of a precoomputed histogram |
| (int) Number of bins for the histogram. The default number of bins is 64. The maximum number of bins is 512 |
Attributes | |
| ([float]) edges of bins |
| ([int]) number of elements falling in each bin |
Class Variables | |
MAX_LENGTH |
|