We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maybe this repository should provide an example (or examples) to just display an image from MNIST dataset (display array as raster image in Julia)
julia> using MNIST julia> features = trainfeatures(1) julia> label = trainlabel(1) julia> NROWS, NCOLS = 28, 28 julia> a = reshape(features, NROWS, NCOLS)
With PyPlot
using PyPlot matshow(a)
With Gadfly
using Gadfly spy(a)
Ideally grayscale plots should be used
With ImageView
using ImageView imshow(a)
or reversing black and white
imshow(255-a)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Maybe this repository should provide an example (or examples) to just display an image from MNIST dataset (display array as raster image in Julia)
With PyPlot
With Gadfly
Ideally grayscale plots should be used
With ImageView
or reversing black and white
The text was updated successfully, but these errors were encountered: