aml-run/action.yml

37 строки
1.8 KiB
YAML
Исходник Обычный вид История

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"
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"
outputs:
2020-03-26 01:14:37 +03:00
experiment_name:
description: "Name of the experiment of the run"
2020-03-26 01:14:37 +03:00
run_id:
description: "ID of the run"
2020-03-26 01:14:37 +03:00
run_url:
description: "URL to the run in the Azure Machine Learning Studio"
2020-03-26 01:14:37 +03:00
run_metrics:
description: "Metrics of the run (will only be provided if wait_for_completion is set to True)"
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)"
branding:
icon: "chevron-up"
color: "blue"
2020-03-12 20:28:05 +03:00
runs:
using: "docker"
image: "Dockerfile"