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 required: true
default: "run.json" default: "run.json"
outputs: outputs:
experiment_name: experimentName:
description: "Name of the experiment of the run" description: "Name of the experiment of the run"
run_id: runId:
description: "ID of the run" description: "ID of the run"
run_url: runUrl:
description: "URL to the run in the Azure Machine Learning Studio" description: "URL to the run in the Azure Machine Learning Studio"
branding: branding:
icon: "chevron-up" icon: "chevron-up"

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

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