Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

grid_data=d.iloc[index].as_matrix( ).reshape(28,28) not working

# display or plot a number.
plt.figure(figsize=(7,7))
idx = 100

grid_data = d.iloc[idx].as_matrix().reshape(28,28) # reshape from 1d to 2d pixel array
plt.imshow(grid_data, interpolation = "none", cmap = "gray")
plt.show()

print(l[idx])
Source by mylearningsinaiml.wordpress.com #
 
PREVIOUS NEXT
Tagged: #working
ADD COMMENT
Topic
Name
7+6 =