Skip to content

Commit

Permalink
add azml cli scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
seanytak committed Oct 12, 2021
1 parent 6754ab5 commit 5798efb
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 0 deletions.
6 changes: 6 additions & 0 deletions contrib/segmentation/mlops/compute.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$schema: https://azuremlschemas.azureedge.net/latest/compute.schema.json
name: gpu-cluster
type: amlcompute
size: Standard_NC24s_v3
min_instances: 0
max_instances: 2
25 changes: 25 additions & 0 deletions contrib/segmentation/mlops/conda_envs/conda_env.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: conda-env
channels:
- conda-forge
dependencies:
- python=3.8
- pip
- pip:
- albumentations
- azure-storage-blob
- azureml-sdk
- click
- ipyplot
- jupyter
- jupytext
- matplotlib
- numpy>=1.20
- pandas
- pycocotools
- python-dotenv
- scikit-learn
- seaborn
- segmentation-models-pytorch
- torch
- torchmetrics
- torchvision
5 changes: 5 additions & 0 deletions contrib/segmentation/mlops/drone_dataset.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
$schema: https://azuremlschemas.azureedge.net/latest/dataset.schema.json
name: drone-dataset
version: 1
datastore: azureml:workspaceblobstore
local_path: <path-to-local-dataset>
6 changes: 6 additions & 0 deletions contrib/segmentation/mlops/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
$schema: https://azuremlschemas.azureedge.net/latest/environment.schema.json
name: semantic-segmentation
version: 1
docker:
image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04
conda_file: file:conda_envs/conda_env.yml

0 comments on commit 5798efb

Please sign in to comment.