Download files from the run record. You can download any files that
were uploaded to the run record via upload_files_to_run()
or
upload_folder_to_run()
, or any files that were written out to
the ./outputs
or ./logs
folders during a run.
download_files_from_run(
run,
prefix = NULL,
output_directory = NULL,
output_paths = NULL,
batch_size = 100L
)
The Run
object.
A string of the the filepath prefix (folder name) from which to download all artifacts. If not specified, all the artifacts in the run record will be downloaded.
(Optional) A string of the directory that all artifact paths use as a prefix.
(Optional) A list of strings of the local filepaths where the artifacts will be downloaded to.
An int of the number of files to download per batch.
None