in fclib/fclib/azureml/azureml_utils.py [0:0]
def get_output_files(run, output_path, file_names=None):
"""
Method to get the output files from an AzureML output directory.
Args:
file_names(list): Names of the files to download.
run(azureml.core.run.Run): Run object of the run.
output_path(str): Path to download the output files.
Returns: None
"""
os.makedirs(output_path, exist_ok=True)
if file_names is None:
file_names = run.get_file_names()
for f in file_names:
dest = os.path.join(output_path, f.split("/")[-1])
print("Downloading file {} to {}...".format(f, dest))
run.download_file(f, dest)