cifar-10数据集读取

数据集官网:https://www.cs.toronto.edu/~kriz/cifar.html python2读取方式: def unpickle(file):     import cPickle     with open(file, 'rb') as fo:         dict = cPickle.load(fo)     return dict   python3读取方式:  
相关文章
相关标签/搜索