Jump to content

TensorBoard: Difference between revisions

no edit summary
No edit summary
Line 1: Line 1:
TensorBoard is a way to visualize your model and various statistics during or after training.
TensorBoard is a way to visualize your model and various statistics during or after training.


==Custom Usage==
==CLI Usage==
===CLI===
<pre>
tensorboard --logdir [logs]
</pre>
 
;Flags
*<code>--samples_per_plugin</code> indices the number of samples to show for each tab. Non-scalar objects are sampled using reservoir sampling.
** <code>--samples_per_plugin images=10000</code> samples approximately 10000 samples.
 
==Training Usage==
If you're using a custom training loop (i.e. gradient tape), then you'll need to set everything up manually.
If you're using a custom training loop (i.e. gradient tape), then you'll need to set everything up manually.