I am using scikit learn to understand machine learning. An introduction to machine learning with scikit-learn
Here the data is loaded into variable digits. digits.data gives us access to the data which is an 8 * 8 matrix. My question is what does the values in digits.data refers to, and why is the maximum value restricted to 16.
My best guess is its the gray scale value of each pixel, if so what is the difference between digits.data and digits.image
Thanks