TensorBoard Histogram Dashboard
TensorBoard Histogram Dashboard
The TensorBoard Histogram Dashboard displays how the distribution of some Tensor
in your TensorFlow graph has changed over time. It does this by showing many histograms visualizations of your tensor at different points in time.
A Basic Example
Let's start with a simple case: a normally-distributed variable, where the mean shifts over time. TensorFlow has an op tf.random_normal
which is perfect for this purpose. As is usually the case with TensorBoard, we will ingest data using a summary op; in this case, 'tf.summary.histogram'. For a primer on how summaries work, please see the general 登录查看完整内容