This was more of a question out of curiosity. I see 2 different 2D-arrays in sklearn load_digits dataset - images and data(http://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_digits.html) and wonder if I can use them interchangeably for training. I ask because I was able to train a NN with images instead of data and saw that it converged to around 0.5% train error and 8% validation error with 80-20 split. If so, what's the difference in terms of features between the two?
The documentation doesn't mention much about the two except that you can use the images dataset for visualizing.