├── .github └── workflows │ └── azureml.yml ├── .gitignore ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── docs ├── alternative_configure_connection.png ├── alternative_create_connection.png ├── choose_pipeline_yaml.png ├── create_connection.png ├── create_organization.png ├── create_pipeline.png ├── create_project.png ├── create_service_connection.png ├── create_workspace.png ├── fork_repo.png ├── getting_started.md ├── pipeline_running.png ├── project_settings.png ├── run_pipeline.png ├── running_pipeline_steps.png ├── select_existing_pipeline.png ├── select_repo.png └── service_connection.png ├── environments ├── AzureML-AutoML-DNN-GPU │ └── envdef.json ├── AzureML-AutoML-DNN │ └── envdef.json ├── AzureML-AutoML-GPU │ └── envdef.json ├── AzureML-AutoML │ └── envdef.json ├── AzureML-Chainer-5.1.0-CPU │ └── envdef.json ├── AzureML-Chainer-5.1.0-GPU │ └── envdef.json ├── AzureML-Dask-CPU │ └── envdef.json ├── AzureML-Dask-GPU │ └── envdef.json ├── AzureML-Designer-IO │ └── envdef.json ├── AzureML-Designer-NLP │ └── envdef.json ├── AzureML-Designer-R │ └── envdef.json ├── AzureML-Designer-Recommender │ └── envdef.json ├── AzureML-Designer-Transform │ └── envdef.json ├── AzureML-Designer │ └── envdef.json ├── AzureML-Hyperdrive-ForecastDNN │ └── envdef.json ├── AzureML-Minimal │ ├── envdef.json │ └── tests │ │ └── smoke_test.py ├── AzureML-PySpark-MmlSpark-0.15 │ └── envdef.json ├── AzureML-PyTorch-1.0-CPU │ └── envdef.json ├── AzureML-PyTorch-1.0-GPU │ └── envdef.json ├── AzureML-PyTorch-1.1-CPU │ └── envdef.json ├── AzureML-PyTorch-1.1-GPU │ └── envdef.json ├── AzureML-PyTorch-1.2-CPU │ └── envdef.json ├── AzureML-PyTorch-1.2-GPU │ └── envdef.json ├── AzureML-PyTorch-1.3-CPU │ └── envdef.json ├── AzureML-PyTorch-1.3-GPU │ └── envdef.json ├── AzureML-PyTorch-1.4-CPU │ └── envdef.json ├── AzureML-PyTorch-1.4-GPU │ └── envdef.json ├── AzureML-Scikit-learn-0.20.3 │ └── envdef.json ├── AzureML-TensorFlow-1.10-CPU │ └── envdef.json ├── AzureML-TensorFlow-1.10-GPU │ └── envdef.json ├── AzureML-TensorFlow-1.12-CPU │ └── envdef.json ├── AzureML-TensorFlow-1.12-GPU │ └── envdef.json ├── AzureML-TensorFlow-1.13-CPU │ └── envdef.json ├── AzureML-TensorFlow-1.13-GPU │ └── envdef.json ├── AzureML-TensorFlow-2.0-CPU │ └── envdef.json ├── AzureML-TensorFlow-2.0-GPU │ └── envdef.json ├── AzureML-Tutorial │ ├── envdef.json │ └── tests │ │ └── smoke_test.py ├── AzureML-VowpalWabbit-8.8.0 │ └── envdef.json ├── README.md └── readme.md ├── examples ├── ml-pipeline-yml │ ├── conda_dependencies.yml │ ├── default_runconfig.yml │ ├── readme.md │ ├── test_pipeline_azurebatchstep.yml │ ├── test_pipeline_databrickstep.yml │ ├── test_pipeline_datatransferstep.yml │ ├── test_pipeline_graph_params.yml │ ├── test_pipeline_published.yml │ ├── test_pipeline_pythonscriptstep.yml │ ├── test_pipeline_with_adlastep.yml │ ├── test_schedule_with_datastore.yaml │ └── test_schedule_with_recurrence.yaml ├── runconfigs │ ├── generic.runconfig │ ├── pytorch-horovod.runconfig │ ├── pytorch-singlenode.runconfig │ ├── pytorch-singlenode.yml │ ├── sklearn.runconfig │ ├── tensorflow-horovod.runconfig │ ├── tensorflow-parameter-server.runconfig │ └── tensorflow-single-node.runconfig └── template.runconfig ├── models └── diabetes │ ├── .amlignore │ ├── README.md │ ├── config │ ├── deployment-config-aci.yml │ ├── deployment-config-aks.yml │ ├── inference-conda.yml │ ├── inference-config-withenv.json │ ├── inference-config.yml │ ├── train-conda.yml │ └── train.runconfig │ ├── score.py │ ├── train.py │ └── utils │ ├── __init__.py │ └── mylib.py └── pipelines └── diabetes-train-and-deploy.yml /.github/workflows/azureml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/.github/workflows/azureml.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/LICENSE-CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/alternative_configure_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/alternative_configure_connection.png -------------------------------------------------------------------------------- /docs/alternative_create_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/alternative_create_connection.png -------------------------------------------------------------------------------- /docs/choose_pipeline_yaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/choose_pipeline_yaml.png -------------------------------------------------------------------------------- /docs/create_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/create_connection.png -------------------------------------------------------------------------------- /docs/create_organization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/create_organization.png -------------------------------------------------------------------------------- /docs/create_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/create_pipeline.png -------------------------------------------------------------------------------- /docs/create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/create_project.png -------------------------------------------------------------------------------- /docs/create_service_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/create_service_connection.png -------------------------------------------------------------------------------- /docs/create_workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/create_workspace.png -------------------------------------------------------------------------------- /docs/fork_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/fork_repo.png -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/pipeline_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/pipeline_running.png -------------------------------------------------------------------------------- /docs/project_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/project_settings.png -------------------------------------------------------------------------------- /docs/run_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/run_pipeline.png -------------------------------------------------------------------------------- /docs/running_pipeline_steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/running_pipeline_steps.png -------------------------------------------------------------------------------- /docs/select_existing_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/select_existing_pipeline.png -------------------------------------------------------------------------------- /docs/select_repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/select_repo.png -------------------------------------------------------------------------------- /docs/service_connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/docs/service_connection.png -------------------------------------------------------------------------------- /environments/AzureML-AutoML-DNN-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-AutoML-DNN-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-AutoML-DNN/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-AutoML-DNN/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-AutoML-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-AutoML-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-AutoML/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-AutoML/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Chainer-5.1.0-CPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Chainer-5.1.0-CPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Chainer-5.1.0-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Chainer-5.1.0-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Dask-CPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Dask-CPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Dask-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Dask-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Designer-IO/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Designer-IO/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Designer-NLP/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Designer-NLP/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Designer-R/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Designer-R/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Designer-Recommender/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Designer-Recommender/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Designer-Transform/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Designer-Transform/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Designer/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Designer/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Hyperdrive-ForecastDNN/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Hyperdrive-ForecastDNN/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Minimal/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Minimal/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Minimal/tests/smoke_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Minimal/tests/smoke_test.py -------------------------------------------------------------------------------- /environments/AzureML-PySpark-MmlSpark-0.15/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-PySpark-MmlSpark-0.15/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-PyTorch-1.0-CPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-PyTorch-1.0-CPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-PyTorch-1.0-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-PyTorch-1.0-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-PyTorch-1.1-CPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-PyTorch-1.1-CPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-PyTorch-1.1-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-PyTorch-1.1-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-PyTorch-1.2-CPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-PyTorch-1.2-CPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-PyTorch-1.2-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-PyTorch-1.2-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-PyTorch-1.3-CPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-PyTorch-1.3-CPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-PyTorch-1.3-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-PyTorch-1.3-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-PyTorch-1.4-CPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-PyTorch-1.4-CPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-PyTorch-1.4-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-PyTorch-1.4-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Scikit-learn-0.20.3/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Scikit-learn-0.20.3/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-TensorFlow-1.10-CPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-TensorFlow-1.10-CPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-TensorFlow-1.10-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-TensorFlow-1.10-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-TensorFlow-1.12-CPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-TensorFlow-1.12-CPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-TensorFlow-1.12-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-TensorFlow-1.12-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-TensorFlow-1.13-CPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-TensorFlow-1.13-CPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-TensorFlow-1.13-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-TensorFlow-1.13-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-TensorFlow-2.0-CPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-TensorFlow-2.0-CPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-TensorFlow-2.0-GPU/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-TensorFlow-2.0-GPU/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Tutorial/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Tutorial/envdef.json -------------------------------------------------------------------------------- /environments/AzureML-Tutorial/tests/smoke_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-Tutorial/tests/smoke_test.py -------------------------------------------------------------------------------- /environments/AzureML-VowpalWabbit-8.8.0/envdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/environments/AzureML-VowpalWabbit-8.8.0/envdef.json -------------------------------------------------------------------------------- /environments/README.md: -------------------------------------------------------------------------------- 1 | # Azure ML Environment Examples 2 | -------------------------------------------------------------------------------- /environments/readme.md: -------------------------------------------------------------------------------- 1 | # Azure ML Curated Environments 2 | -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/conda_dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/conda_dependencies.yml -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/default_runconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/default_runconfig.yml -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/readme.md -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/test_pipeline_azurebatchstep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/test_pipeline_azurebatchstep.yml -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/test_pipeline_databrickstep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/test_pipeline_databrickstep.yml -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/test_pipeline_datatransferstep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/test_pipeline_datatransferstep.yml -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/test_pipeline_graph_params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/test_pipeline_graph_params.yml -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/test_pipeline_published.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/test_pipeline_published.yml -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/test_pipeline_pythonscriptstep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/test_pipeline_pythonscriptstep.yml -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/test_pipeline_with_adlastep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/test_pipeline_with_adlastep.yml -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/test_schedule_with_datastore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/test_schedule_with_datastore.yaml -------------------------------------------------------------------------------- /examples/ml-pipeline-yml/test_schedule_with_recurrence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/ml-pipeline-yml/test_schedule_with_recurrence.yaml -------------------------------------------------------------------------------- /examples/runconfigs/generic.runconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/runconfigs/generic.runconfig -------------------------------------------------------------------------------- /examples/runconfigs/pytorch-horovod.runconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/runconfigs/pytorch-horovod.runconfig -------------------------------------------------------------------------------- /examples/runconfigs/pytorch-singlenode.runconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/runconfigs/pytorch-singlenode.runconfig -------------------------------------------------------------------------------- /examples/runconfigs/pytorch-singlenode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/runconfigs/pytorch-singlenode.yml -------------------------------------------------------------------------------- /examples/runconfigs/sklearn.runconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/runconfigs/sklearn.runconfig -------------------------------------------------------------------------------- /examples/runconfigs/tensorflow-horovod.runconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/runconfigs/tensorflow-horovod.runconfig -------------------------------------------------------------------------------- /examples/runconfigs/tensorflow-parameter-server.runconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/runconfigs/tensorflow-parameter-server.runconfig -------------------------------------------------------------------------------- /examples/runconfigs/tensorflow-single-node.runconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/runconfigs/tensorflow-single-node.runconfig -------------------------------------------------------------------------------- /examples/template.runconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/examples/template.runconfig -------------------------------------------------------------------------------- /models/diabetes/.amlignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/models/diabetes/.amlignore -------------------------------------------------------------------------------- /models/diabetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/models/diabetes/README.md -------------------------------------------------------------------------------- /models/diabetes/config/deployment-config-aci.yml: -------------------------------------------------------------------------------- 1 | containerResourceRequirements: 2 | cpu: 1 3 | memoryInGB: 0.5 4 | computeType: ACI -------------------------------------------------------------------------------- /models/diabetes/config/deployment-config-aks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/models/diabetes/config/deployment-config-aks.yml -------------------------------------------------------------------------------- /models/diabetes/config/inference-conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/models/diabetes/config/inference-conda.yml -------------------------------------------------------------------------------- /models/diabetes/config/inference-config-withenv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/models/diabetes/config/inference-config-withenv.json -------------------------------------------------------------------------------- /models/diabetes/config/inference-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/models/diabetes/config/inference-config.yml -------------------------------------------------------------------------------- /models/diabetes/config/train-conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/models/diabetes/config/train-conda.yml -------------------------------------------------------------------------------- /models/diabetes/config/train.runconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/models/diabetes/config/train.runconfig -------------------------------------------------------------------------------- /models/diabetes/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/models/diabetes/score.py -------------------------------------------------------------------------------- /models/diabetes/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/models/diabetes/train.py -------------------------------------------------------------------------------- /models/diabetes/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/diabetes/utils/mylib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/models/diabetes/utils/mylib.py -------------------------------------------------------------------------------- /pipelines/diabetes-train-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/pipelines-azureml/HEAD/pipelines/diabetes-train-and-deploy.yml --------------------------------------------------------------------------------