Description Usage Arguments Details Value Examples
View source: R/downloadAndLoad.R
download_mnist
downloads the mnist dataset into ./mnist
.
1 | download_mnist(where = "./")
|
where |
Path to where the dataset should be saved. Default is current working directory. |
The function creates the mnist
directory in the specified directory where
,
downloads the dataset and unzips it. Use the function load_mnist
afterwards to load the dataset into the workspace. The dataset is downloaded
from http://yann.lecun.com/exdb/mnist/. Check out the webpage for
performance of various classifiers. It may depend on your platform whether
the dataset is successfully unzipped.
Returns TRUE
if successful.
1 2 3 4 5 | ## Not run:
download_mnist('somePathToStore/')
load_mnist('samePathAsAbove/')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.