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 @@ -87,6 +87,10 @@ julia> FashionMNIST.convert2image(FashionMNIST.traintensor(1)) # first training
87
87
88
88
## API Documentation
89
89
90
+ ``` @docs
91
+ FashionMNIST
92
+ ```
93
+
90
94
### Trainingset
91
95
92
96
``` @docs
Original file line number Diff line number Diff line change 1
1
export FashionMNIST
2
+
3
+ """
4
+ Fashion-MNIST
5
+
6
+ - Authors: Han Xiao, Kashif Rasul, Roland Vollgraf
7
+ - Website: https://github.com/zalandoresearch/fashion-mnist
8
+
9
+ Fashion-MNIST is a dataset of Zalando's article images—consisting
10
+ of a training set of 60,000 examples and a test set of 10,000
11
+ examples. Each example is a 28x28 grayscale image, associated
12
+ with a label from 10 classes. It can serve as a drop-in
13
+ replacement for MNIST.
14
+
15
+ ## Interface
16
+
17
+ - [`FashionMNIST.traintensor`](@ref), [`FashionMNIST.trainlabels`](@ref), [`FashionMNIST.traindata`](@ref)
18
+ - [`FashionMNIST.testtensor`](@ref), [`FashionMNIST.testlabels`](@ref), [`FashionMNIST.testdata`](@ref)
19
+
20
+ ## Utilities
21
+
22
+ - [`FashionMNIST.download`](@ref)
23
+ - [`MNIST.convert2features`](@ref)
24
+ - [`MNIST.convert2image`](@ref)
25
+ """
2
26
module FashionMNIST
3
27
using DataDeps
4
28
using FixedPointNumbers
You can’t perform that action at this time.
0 commit comments