Passing the MD5 hash will verify the file after download as well as if it is already present in the cache.
get_file(
fname,
origin,
file_hash = NULL,
cache_subdir = "datasets",
hash_algorithm = "auto",
extract = FALSE,
archive_format = "auto",
cache_dir = NULL,
untar = FALSE
)
Path to the downloaded file
Name of the file. If an absolute path /path/to/file.txt
is
specified the file will be saved at that location.
Original URL of the file.
The expected hash string of the file after download. The sha256 and md5 hash algorithms are both supported.
Subdirectory under the Keras cache dir where the file is
saved. If an absolute path /path/to/folder
is specified the file will be
saved at that location.
Select the hash algorithm to verify the file. options are 'md5', 'sha256', and 'auto'. The default 'auto' detects the hash algorithm in use.
True tries extracting the file as an Archive, like tar or zip.
Archive format to try for extracting the file. Options are 'auto', 'tar', 'zip', and None. 'tar' includes tar, tar.gz, and tar.bz files. The default 'auto' is ('tar', 'zip'). None or an empty list will return no matches found.
Location to store cached files, when NULL
it defaults to
the Keras configuration directory.
Deprecated in favor of 'extract'. boolean, whether the file should be decompressed