download_files_from_run {azuremlsdk}R Documentation

Download files from a run

Description

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.

Usage

download_files_from_run(
  run,
  prefix = NULL,
  output_directory = NULL,
  output_paths = NULL,
  batch_size = 100L
)

Arguments

run

The Run object.

prefix

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.

output_directory

(Optional) A string of the directory that all artifact paths use as a prefix.

output_paths

(Optional) A list of strings of the local filepaths where the artifacts will be downloaded to.

batch_size

An int of the number of files to download per batch.

Value

None

See Also

download_file_from_run()


[Package azuremlsdk version 1.10.0 Index]