Skip to content

Instantly share code, notes, and snippets.

@raunakdoesdev
Created November 17, 2017 00:13
Show Gist options
  • Save raunakdoesdev/1871989a46ce8dda3eda6cb009a734be to your computer and use it in GitHub Desktop.
Save raunakdoesdev/1871989a46ce8dda3eda6cb009a734be to your computer and use it in GitHub Desktop.
# The data, shuffled and split between train and test sets:
(x_train, y_train), (x_test, y_test) = cifar10.load_data()
x_train = x_train[0:5000]
y_train = y_train[0:5000]
x_test = x_test[0:1000]
y_test = y_test[0:1000]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment