File tree Expand file tree Collapse file tree 8 files changed +62
-6
lines changed Expand file tree Collapse file tree 8 files changed +62
-6
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ information on the interface take a look at the documentation
42
42
43
43
Function | Description
44
44
---------|-------------
45
- ` download([dir]) ` | Trigger interactive download of the dataset
45
+ [ ` download([dir]) ` ] ( @ ref CIFAR10.download) | Trigger interactive download of the dataset
46
46
[ ` classnames() ` ] (@ref CIFAR10.classnames) | Return the class names as a vector of strings
47
47
[ ` traintensor([T], [indices]; [dir]) ` ] (@ref CIFAR10.traintensor) | Load the training images as an array of eltype ` T `
48
48
[ ` trainlabels([indices]; [dir]) ` ] (@ref CIFAR10.trainlabels) | Load the labels for the training images
@@ -104,6 +104,7 @@ CIFAR10.testdata
104
104
### Utilities
105
105
106
106
``` @docs
107
+ CIFAR10.download
107
108
CIFAR10.classnames
108
109
CIFAR10.convert2features
109
110
CIFAR10.convert2image
Original file line number Diff line number Diff line change @@ -45,9 +45,9 @@ information on the interface take a look at the documentation
45
45
46
46
Function | Description
47
47
---------|-------------
48
- ` download([dir]) ` | Trigger interactive download of the dataset
49
- [ ` classnames_coarse() ` ] (@ref CIFAR100.classnames_coarse) | Return the 20 super-class names as a vector of strings
50
- [ ` classnames_fine() ` ] (@ref CIFAR100.classnames_fine) | Return the 100 class names as a vector of strings
48
+ [ ` download([dir]) ` ] ( @ ref CIFAR100.download) | Trigger interactive download of the dataset
49
+ [ ` classnames_coarse(; [dir] ) ` ] (@ref CIFAR100.classnames_coarse) | Return the 20 super-class names as a vector of strings
50
+ [ ` classnames_fine(; [dir] ) ` ] (@ref CIFAR100.classnames_fine) | Return the 100 class names as a vector of strings
51
51
[ ` traintensor([T], [indices]; [dir]) ` ] (@ref CIFAR100.traintensor) | Load the training images as an array of eltype ` T `
52
52
[ ` trainlabels([indices]; [dir]) ` ] (@ref CIFAR100.trainlabels) | Load the labels for the training images
53
53
[ ` testtensor([T], [indices]; [dir]) ` ] (@ref CIFAR100.testtensor) | Load the test images as an array of eltype ` T `
@@ -111,6 +111,7 @@ See [`CIFAR10.convert2features`](@ref) and
111
111
[ ` CIFAR10.convert2image ` ] ( @ref )
112
112
113
113
``` @docs
114
+ CIFAR100.download
114
115
CIFAR100.classnames_coarse
115
116
CIFAR100.classnames_fine
116
117
```
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ information on the interface take a look at the documentation
42
42
43
43
Function | Description
44
44
---------|-------------
45
- ` download([dir]) ` | Trigger (interactive) download of the dataset
45
+ [ ` download([dir]) ` ] ( @ ref FashionMNIST.download) | Trigger (interactive) download of the dataset
46
46
[ ` classnames() ` ] (@ref FashionMNIST.classnames) | Return the class names as a vector of strings
47
47
[ ` traintensor([T], [indices]; [dir]) ` ] (@ref FashionMNIST.traintensor) | Load the training images as an array of eltype ` T `
48
48
[ ` trainlabels([indices]; [dir]) ` ] (@ref FashionMNIST.trainlabels) | Load the labels for the training images
@@ -109,6 +109,7 @@ See [`MNIST.convert2features`](@ref) and
109
109
[ ` MNIST.convert2image ` ] ( @ref )
110
110
111
111
``` @docs
112
+ FashionMNIST.download
112
113
FashionMNIST.classnames
113
114
```
114
115
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ information on the interface take a look at the documentation
43
43
44
44
Function | Description
45
45
---------|-------------
46
- ` download([dir]) ` | Trigger (interactive) download of the dataset
46
+ [ ` download([dir]) ` ] ( @ ref MNIST.download) | Trigger (interactive) download of the dataset
47
47
[ ` traintensor([T], [indices]; [dir]) ` ] (@ref MNIST.traintensor) | Load the training images as an array of eltype ` T `
48
48
[ ` trainlabels([indices]; [dir]) ` ] (@ref MNIST.trainlabels) | Load the labels for the training images
49
49
[ ` testtensor([T], [indices]; [dir]) ` ] (@ref MNIST.testtensor) | Load the test images as an array of eltype ` T `
@@ -105,6 +105,7 @@ MNIST.testdata
105
105
### Utilities
106
106
107
107
``` @docs
108
+ MNIST.download
108
109
MNIST.convert2features
109
110
MNIST.convert2image
110
111
```
Original file line number Diff line number Diff line change @@ -50,6 +50,19 @@ module CIFAR10
50
50
" truck" ,
51
51
]
52
52
53
+ """
54
+ download([dir]; [i_accept_the_terms_of_use])
55
+
56
+ Trigger the (interactive) download of the full dataset into
57
+ "<`dir`>/$DEPNAME ". If no `dir` is provided the dataset will
58
+ be downloaded into "~/.julia/datadeps/$DEPNAME ".
59
+
60
+ This function will display an interactive dialog unless
61
+ either the keyword parameter `i_accept_the_terms_of_use` or
62
+ the environment variable `DATADEPS_ALWAY_ACCEPT` is set to
63
+ `true`. Note that using the data responsibly and respecting
64
+ copyright/terms-of-use remains your responsibility.
65
+ """
53
66
download (args... ; kw... ) = download_dep (DEPNAME, args... ; kw... )
54
67
55
68
include (joinpath (" Reader" ," Reader.jl" ))
Original file line number Diff line number Diff line change @@ -38,6 +38,19 @@ module CIFAR100
38
38
const TRAINSET_SIZE = 50_000
39
39
const TESTSET_SIZE = 10_000
40
40
41
+ """
42
+ download([dir]; [i_accept_the_terms_of_use])
43
+
44
+ Trigger the (interactive) download of the full dataset into
45
+ "<`dir`>/$DEPNAME ". If no `dir` is provided the dataset will
46
+ be downloaded into "~/.julia/datadeps/$DEPNAME ".
47
+
48
+ This function will display an interactive dialog unless
49
+ either the keyword parameter `i_accept_the_terms_of_use` or
50
+ the environment variable `DATADEPS_ALWAY_ACCEPT` is set to
51
+ `true`. Note that using the data responsibly and respecting
52
+ copyright/terms-of-use remains your responsibility.
53
+ """
41
54
download (args... ; kw... ) = download_dep (DEPNAME, args... ; kw... )
42
55
43
56
include (joinpath (" Reader" ," Reader.jl" ))
Original file line number Diff line number Diff line change @@ -47,6 +47,19 @@ module FashionMNIST
47
47
" Ankle boot"
48
48
]
49
49
50
+ """
51
+ download([dir]; [i_accept_the_terms_of_use])
52
+
53
+ Trigger the (interactive) download of the full dataset into
54
+ "<`dir`>/$DEPNAME ". If no `dir` is provided the dataset will
55
+ be downloaded into "~/.julia/datadeps/$DEPNAME ".
56
+
57
+ This function will display an interactive dialog unless
58
+ either the keyword parameter `i_accept_the_terms_of_use` or
59
+ the environment variable `DATADEPS_ALWAY_ACCEPT` is set to
60
+ `true`. Note that using the data responsibly and respecting
61
+ copyright/terms-of-use remains your responsibility.
62
+ """
50
63
download (args... ; kw... ) = download_dep (DEPNAME, args... ; kw... )
51
64
52
65
include (" interface.jl" )
Original file line number Diff line number Diff line change @@ -31,6 +31,19 @@ module MNIST
31
31
const TESTIMAGES = " t10k-images-idx3-ubyte.gz"
32
32
const TESTLABELS = " t10k-labels-idx1-ubyte.gz"
33
33
34
+ """
35
+ download([dir]; [i_accept_the_terms_of_use])
36
+
37
+ Trigger the (interactive) download of the full dataset into
38
+ "<`dir`>/$DEPNAME ". If no `dir` is provided the dataset will
39
+ be downloaded into "~/.julia/datadeps/$DEPNAME ".
40
+
41
+ This function will display an interactive dialog unless
42
+ either the keyword parameter `i_accept_the_terms_of_use` or
43
+ the environment variable `DATADEPS_ALWAY_ACCEPT` is set to
44
+ `true`. Note that using the data responsibly and respecting
45
+ copyright/terms-of-use remains your responsibility.
46
+ """
34
47
download (args... ; kw... ) = download_dep (DEPNAME, args... ; kw... )
35
48
36
49
include (joinpath (" Reader" ," Reader.jl" ))
You can’t perform that action at this time.
0 commit comments