This commit is contained in:
Marvin Buss 2020-03-25 17:19:09 +01:00
Родитель 01268207ed
Коммит ccd87f88cd
2 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -10,11 +10,11 @@ inputs:
required: true
default: "run.json"
outputs:
experiment_name:
experimentName:
description: "Name of the experiment of the run"
run_id:
runId:
description: "ID of the run"
run_url:
runUrl:
description: "URL to the run in the Azure Machine Learning Studio"
branding:
icon: "chevron-up"

Просмотреть файл

@ -122,9 +122,9 @@ def main():
# Create outputs
print("::debug::Creating outputs")
print(f"::set-output name=experiment_name::{run.experiment.name}")
print(f"::set-output name=run_id::{run.id}")
print(f"::set-output name=run_url::{run.get_portal_url()}")
print(f"::set-output name=experimentName::{run.experiment.name}")
print(f"::set-output name=runId::{run.id}")
print(f"::set-output name=runUrl::{run.get_portal_url()}")
print("::debug::Successfully finished Azure Machine Learning Train Action")