Created
March 18, 2018 21:45
-
-
Save JoshVarty/9a8ca8c05e6f15a5d8b1937e25ecdc1e to your computer and use it in GitHub Desktop.
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 tensorflow as tf | |
import numpy as np | |
import cifar_data_loader | |
(train_images, train_labels, test_images, test_labels, mean_image) = cifar_data_loader.load_data() | |
print(train_images.shape) | |
print(train_labels.shape) | |
print(test_images.shape) | |
print(test_labels.shape) | |
print(mean_image.shape) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment