Reputation: 9
Working on CIFAR-10 Dataset Classification using Convolutional Neural Networks. I am unable to understand:
1) where to extract CIFAR-10 dataset files 2) how to load the batches using pickle framework 3) split dataset into training data and test data
Please help with the code, Using python 3.6 on jupyter notebook.
I tried this, but nothing seems to work. May be because i saved the CIFAR-10 file at wrong location.
def unpickle(file):
import pickle
with open(file, 'rb') as fo:
dict = pickle.load(fo, encoding='bytes')
return dict
Upvotes: 0
Views: 2423