Dave Greenwood

Results 1 comments of Dave Greenwood

The code could be changed like so: ``` from skdata.mnist.views import OfficialImageClassification task = OfficialImageClassification() # print 'Digit shape', task.train.x[0].shape # imshow(task.train.x[0][:,:,0], cmap=cm.gray, interpolation='nearest') print 'Digit shape', task.all_images[0].shape imshow(task.all_images[0].reshape((28, -1)),...