2020-03-12 20:28:05 +03:00
name : "Azure Machine Learning Run Action"
description : "Submit a run to an Azure Machine Learning Workspace with this GitHub Action"
2020-03-20 11:39:16 +03:00
author : "azure/gh-aml"
2020-03-12 20:28:05 +03:00
inputs :
2020-03-26 01:14:37 +03:00
azure_credentials :
2020-03-12 20:28:05 +03:00
description : "Paste output of `az ad sp create-for-rbac --name <your-sp-name> --role contributor --scopes /subscriptions/<your-subscriptionId>/resourceGroups/<your-rg> --sdk-auth` as value of secret variable: AZURE_CREDENTIALS"
required : true
2020-03-26 01:14:37 +03:00
parameters_file :
2020-03-12 20:28:05 +03:00
description : "JSON file including the parameters of the run."
required : true
default : "run.json"
2020-03-25 16:57:02 +03:00
outputs :
2020-03-26 01:14:37 +03:00
experiment_name :
2020-03-25 16:57:02 +03:00
description : "Name of the experiment of the run"
2020-03-26 01:14:37 +03:00
run_id :
2020-03-25 16:57:02 +03:00
description : "ID of the run"
2020-03-26 01:14:37 +03:00
run_url :
2020-03-25 16:57:02 +03:00
description : "URL to the run in the Azure Machine Learning Studio"
2020-03-26 01:14:37 +03:00
run_metrics :
2020-03-25 20:44:59 +03:00
description : "Metrics of the run (will only be provided if wait_for_completion is set to True)"
2020-04-15 14:18:24 +03:00
run_metrics_markdown :
description : "Metrics of the run formatted as markdown table (will only be provided if wait_for_completion is set to True)"
2020-03-26 01:14:37 +03:00
published_pipeline_id :
2020-03-31 19:35:17 +03:00
description : "Id of the publised pipeline (will only be provided if you submitted a pipeline and pipeline_publish is set to True)"
2020-03-26 01:14:37 +03:00
published_pipeline_status :
2020-03-31 19:35:17 +03:00
description : "Status of the publised pipeline (will only be provided if you submitted a pipeline and pipeline_publish is set to True)"
2020-03-26 01:14:37 +03:00
published_pipeline_endpoint :
2020-03-31 19:35:17 +03:00
description : "Endpoint of the publised pipeline (will only be provided if you submitted a pipeline and pipeline_publish is set to True)"
2020-05-07 02:26:41 +03:00
artifact_path :
description : "Path of downloaded artifacts and logs from Azure Machine Learning (pipeline) run (will only be provided if wait_for_completion and download_artifacts is set to True)"
2020-03-20 11:39:16 +03:00
branding :
icon : "chevron-up"
color : "blue"
2020-03-12 20:28:05 +03:00
runs :
using : "docker"
image : "Dockerfile"