Skip to content

Commit 507d677

Browse files
committed
adapt RegisterDataDep according to feedback
1 parent 24c5756 commit 507d677

File tree

4 files changed

+21
-28
lines changed

4 files changed

+21
-28
lines changed

src/CIFAR10/CIFAR10.jl

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,15 @@ module CIFAR10
7878
The compressed archive file that contains the
7979
complete dataset is available for download at the
8080
offical website linked above; specifically the binary
81-
version for C programs. We can download and unpack
82-
this archive for you if you wish, but that doesn't
83-
free you from the burden of using the data
84-
responsibly and respect copyright. The authors of
85-
CIFAR-10 aren't really explicit about any terms of
86-
use, so please read the website to make sure you want
87-
to download the dataset.
81+
version for C programs. Note that using the data
82+
responsibly and respecting copyright remains your
83+
responsibility. The authors of CIFAR-10 aren't really
84+
explicit about any terms of use, so please read the
85+
website to make sure you want to download the
86+
dataset.
8887
""",
8988
"https://www.cs.toronto.edu/~kriz/cifar-10-binary.tar.gz",
9089
"c4a38c50a1bc5f3a1c5537f2155ab9d68f9f25eb1ed8d9ddda3db29a59bca1dd",
91-
fetch_method = (src, dst) -> run(BinDeps.download_cmd(src, dst)),
9290
post_fetch_method = file -> (run(BinDeps.unpack_cmd(file,dirname(file), ".gz", ".tar")); rm(file))
9391
)
9492
end

src/CIFAR100/CIFAR100.jl

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -70,17 +70,15 @@ module CIFAR100
7070
The compressed archive file that contains the
7171
complete dataset is available for download at the
7272
offical website linked above; specifically the binary
73-
version for C programs. We can download and unpack
74-
this archive for you if you wish, but that doesn't
75-
free you from the burden of using the data
76-
responsibly and respect copyright. The authors of
77-
CIFAR-100 aren't really explicit about any terms of
78-
use, so please read the website to make sure you want
79-
to download the dataset.
73+
version for C programs. Note that using the data
74+
responsibly and respecting copyright remains your
75+
responsibility. The authors of CIFAR-100 aren't
76+
really explicit about any terms of use, so please
77+
read the website to make sure you want to download
78+
the dataset.
8079
""",
8180
"https://www.cs.toronto.edu/~kriz/cifar-100-binary.tar.gz",
8281
"58a81ae192c23a4be8b1804d68e518ed807d710a4eb253b1f2a199162a40d8ec",
83-
fetch_method = (src, dst) -> run(BinDeps.download_cmd(src, dst)),
8482
post_fetch_method = file -> (run(BinDeps.unpack_cmd(file,dirname(file), ".gz", ".tar")); rm(file))
8583
)
8684
end

src/FashionMNIST/FashionMNIST.jl

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,14 +67,12 @@ module FashionMNIST
6767
arXiv:1708.07747
6868
6969
The files are available for download at the offical
70-
website linked above. We can download these files for you
71-
if you wish, but that doesn't free you from the burden of
72-
using the data responsibly and respect lincense and
73-
authorship.
70+
website linked above. Note that using the data
71+
responsibly and respecting copyright remains your
72+
responsibility.
7473
""",
7574
"http://fashion-mnist.s3-website.eu-central-1.amazonaws.com/" .* [TRAINIMAGES, TRAINLABELS, TESTIMAGES, TESTLABELS],
7675
"c916b6e00d3083643332b70f3c5c3543d3941334b802e252976893969ee6af67",
77-
fetch_method = (src, dst) -> run(BinDeps.download_cmd(src, dst))
7876
)
7977
end
8078
end

src/MNIST/MNIST.jl

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,15 @@ module MNIST
5252
Proceedings of the IEEE, 86(11):2278-2324, November 1998
5353
5454
The files are available for download at the offical
55-
website linked above. We can download these files for you
56-
if you wish, but that doesn't free you from the burden of
57-
using the data responsibly and respect copyright. The
58-
authors of MNIST aren't really explicit about any terms
59-
of use, so please read the website to make sure you want
60-
to download the dataset.
55+
website linked above. Note that using the data
56+
responsibly and respecting copyright remains your
57+
responsibility. The authors of MNIST aren't really
58+
explicit about any terms of use, so please read the
59+
website to make sure you want to download the
60+
dataset.
6161
""",
6262
"http://yann.lecun.com/exdb/mnist/" .* [TRAINIMAGES, TRAINLABELS, TESTIMAGES, TESTLABELS],
6363
"0bb1d5775d852fc5bb32c76ca15a7eb4e9a3b1514a2493f7edfcf49b639d7975",
64-
fetch_method = (src, dst) -> run(BinDeps.download_cmd(src, dst))
6564
)
6665
end
6766
end

0 commit comments

Comments
 (0)