Skip to content

Instantly share code, notes, and snippets.

@JoshVarty
Created March 18, 2018 21:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JoshVarty/9a8ca8c05e6f15a5d8b1937e25ecdc1e to your computer and use it in GitHub Desktop.
Save JoshVarty/9a8ca8c05e6f15a5d8b1937e25ecdc1e to your computer and use it in GitHub Desktop.
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