File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,10 @@ julia> MNIST.convert2image(MNIST.traintensor(1)) # first training image
86
86
87
87
## API Documentation
88
88
89
+ ``` @docs
90
+ MNIST
91
+ ```
92
+
89
93
### Trainingset
90
94
91
95
``` @docs
Original file line number Diff line number Diff line change 1
1
export MNIST
2
+
3
+ """
4
+ The MNIST database of handwritten digits
5
+
6
+ - Authors: Yann LeCun, Corinna Cortes, Christopher J.C. Burges
7
+ - Website: http://yann.lecun.com/exdb/mnist/
8
+
9
+ MNIST is a classic image-classification dataset that is often
10
+ used in small-scale machine learning experiments. It contains
11
+ 70,000 images of handwritten digits. Each observation is a 28x28
12
+ pixel gray-scale image that depicts a handwritten version of 1 of
13
+ the 10 possible digits (0-9).
14
+
15
+ ## Interface
16
+
17
+ - [`MNIST.traintensor`](@ref), [`MNIST.trainlabels`](@ref), [`MNIST.traindata`](@ref)
18
+ - [`MNIST.testtensor`](@ref), [`MNIST.testlabels`](@ref), [`MNIST.testdata`](@ref)
19
+
20
+ ## Utilities
21
+
22
+ - [`MNIST.download`](@ref)
23
+ - [`MNIST.convert2features`](@ref)
24
+ - [`MNIST.convert2image`](@ref)
25
+ """
2
26
module MNIST
3
27
using DataDeps
4
28
using ImageCore
You can’t perform that action at this time.
0 commit comments