Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion cpp/tools/download_mnist.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ def main():
try:
for resource in RESOURCES:
path = os.path.join(options.destination, resource)
url = 'http://yann.lecun.com/exdb/mnist/{}'.format(resource)
# url = 'http://yann.lecun.com/exdb/mnist/{}'.format(resource)
url = 'https://ossci-datasets.s3.amazonaws.com/mnist/{}'.format(resource)
download(path, url, options.quiet)
unzip(path, options.quiet)
except KeyboardInterrupt:
Expand Down
6 changes: 2 additions & 4 deletions run_cpp_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,8 @@ function run_all() {
autograd
custom-dataset
regression

# dataset 503 error on yanns site
# dcgan
# mnist
dcgan
mnist

}

Expand Down