Created
May 28, 2021 02:08
-
-
Save eileen-code4fun/0ca86a0ca860dac9ce41f78e12c4b779 to your computer and use it in GitHub Desktop.
CIFAR10 Viz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
tensorboard_callback = tf.keras.callbacks.TensorBoard( | |
log_dir=os.environ['AIP_TENSORBOARD_LOG_DIR'], | |
histogram_freq=1 | |
) | |
model.fit(train_dataset, epochs=args.epochs, validation_data=val_dataset, callbacks=[tensorboard_callback]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment