Reputation: 7216
At the end of the Convolutional Neural Network example there is an exercise to modify the program to use the Street View House Numbers (SVHN) data set. I have been working on this for the past few days and am finding it quite difficult to modify, especially since the data formats are different and the SVHN data set has variably sized images.
This example would be extremely valuable to build an image classifier for use in a production environment. Any ideas where I could get this completed exercise?
Upvotes: 0
Views: 669
Reputation: 48330
This was answered in the tensorflow mailing list but in case others end up with this question the data can be fetched from the standford website.
The format is in matlab but can be read in python with scipy with scipy.io.loadmat
Upvotes: 1