├── .cloud └── .azure │ ├── compute.json │ ├── registermodel.json │ ├── run.json │ └── workspace.json ├── .github └── workflows │ ├── deploy.yml │ ├── slash_command.yml │ └── train.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── code ├── deploy │ ├── environment.yml │ └── score.py ├── test │ └── test.py └── train │ ├── environment.yaml │ ├── run_config.py │ └── train.py └── docs └── images ├── ML Ops Workflow (2).png ├── actions.png ├── actions_tab.png ├── aml.png ├── ml-lifecycle.png └── secrets.png /.cloud/.azure/compute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/.cloud/.azure/compute.json -------------------------------------------------------------------------------- /.cloud/.azure/registermodel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/.cloud/.azure/registermodel.json -------------------------------------------------------------------------------- /.cloud/.azure/run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/.cloud/.azure/run.json -------------------------------------------------------------------------------- /.cloud/.azure/workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/.cloud/.azure/workspace.json -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/slash_command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/.github/workflows/slash_command.yml -------------------------------------------------------------------------------- /.github/workflows/train.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/.github/workflows/train.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/SECURITY.md -------------------------------------------------------------------------------- /code/deploy/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/code/deploy/environment.yml -------------------------------------------------------------------------------- /code/deploy/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/code/deploy/score.py -------------------------------------------------------------------------------- /code/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/code/test/test.py -------------------------------------------------------------------------------- /code/train/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/code/train/environment.yaml -------------------------------------------------------------------------------- /code/train/run_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/code/train/run_config.py -------------------------------------------------------------------------------- /code/train/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/code/train/train.py -------------------------------------------------------------------------------- /docs/images/ML Ops Workflow (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/docs/images/ML Ops Workflow (2).png -------------------------------------------------------------------------------- /docs/images/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/docs/images/actions.png -------------------------------------------------------------------------------- /docs/images/actions_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/docs/images/actions_tab.png -------------------------------------------------------------------------------- /docs/images/aml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/docs/images/aml.png -------------------------------------------------------------------------------- /docs/images/ml-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/docs/images/ml-lifecycle.png -------------------------------------------------------------------------------- /docs/images/secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/aml-template/HEAD/docs/images/secrets.png --------------------------------------------------------------------------------