File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ module CIFAR10
59
59
60
60
This function will display an interactive dialog unless
61
61
either the keyword parameter `i_accept_the_terms_of_use` or
62
- the environment variable `DATADEPS_ALWAY_ACCEPT ` is set to
62
+ the environment variable `DATADEPS_ALWAYS_ACCEPT ` is set to
63
63
`true`. Note that using the data responsibly and respecting
64
64
copyright/terms-of-use remains your responsibility.
65
65
"""
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ module CIFAR100
47
47
48
48
This function will display an interactive dialog unless
49
49
either the keyword parameter `i_accept_the_terms_of_use` or
50
- the environment variable `DATADEPS_ALWAY_ACCEPT ` is set to
50
+ the environment variable `DATADEPS_ALWAYS_ACCEPT ` is set to
51
51
`true`. Note that using the data responsibly and respecting
52
52
copyright/terms-of-use remains your responsibility.
53
53
"""
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ module FashionMNIST
80
80
81
81
This function will display an interactive dialog unless
82
82
either the keyword parameter `i_accept_the_terms_of_use` or
83
- the environment variable `DATADEPS_ALWAY_ACCEPT ` is set to
83
+ the environment variable `DATADEPS_ALWAYS_ACCEPT ` is set to
84
84
`true`. Note that using the data responsibly and respecting
85
85
copyright/terms-of-use remains your responsibility.
86
86
"""
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ module MNIST
64
64
65
65
This function will display an interactive dialog unless
66
66
either the keyword parameter `i_accept_the_terms_of_use` or
67
- the environment variable `DATADEPS_ALWAY_ACCEPT ` is set to
67
+ the environment variable `DATADEPS_ALWAYS_ACCEPT ` is set to
68
68
`true`. Note that using the data responsibly and respecting
69
69
copyright/terms-of-use remains your responsibility.
70
70
"""
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ using DataDeps
3
3
4
4
function with_accept (f, manual_overwrite)
5
5
auto_accept = if manual_overwrite == nothing
6
- get (ENV , " DATADEPS_ALWAY_ACCEPT " , false )
6
+ get (ENV , " DATADEPS_ALWAYS_ACCEPT " , false )
7
7
else
8
8
manual_overwrite
9
9
end
10
- withenv (f, " DATADEPS_ALWAY_ACCEPT " => string (auto_accept))
10
+ withenv (f, " DATADEPS_ALWAYS_ACCEPT " => string (auto_accept))
11
11
end
12
12
13
13
function datadir (depname, dir = nothing ; i_accept_the_terms_of_use = nothing )
You can’t perform that action at this time.
0 commit comments