Skip to content

Commit 5798efb

Browse files
committed
add azml cli scripts
1 parent 6754ab5 commit 5798efb

File tree

4 files changed

+42
-0
lines changed

4 files changed

+42
-0
lines changed
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
$schema: https://azuremlschemas.azureedge.net/latest/compute.schema.json
2+
name: gpu-cluster
3+
type: amlcompute
4+
size: Standard_NC24s_v3
5+
min_instances: 0
6+
max_instances: 2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: conda-env
2+
channels:
3+
- conda-forge
4+
dependencies:
5+
- python=3.8
6+
- pip
7+
- pip:
8+
- albumentations
9+
- azure-storage-blob
10+
- azureml-sdk
11+
- click
12+
- ipyplot
13+
- jupyter
14+
- jupytext
15+
- matplotlib
16+
- numpy>=1.20
17+
- pandas
18+
- pycocotools
19+
- python-dotenv
20+
- scikit-learn
21+
- seaborn
22+
- segmentation-models-pytorch
23+
- torch
24+
- torchmetrics
25+
- torchvision
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
$schema: https://azuremlschemas.azureedge.net/latest/dataset.schema.json
2+
name: drone-dataset
3+
version: 1
4+
datastore: azureml:workspaceblobstore
5+
local_path: <path-to-local-dataset>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
$schema: https://azuremlschemas.azureedge.net/latest/environment.schema.json
2+
name: semantic-segmentation
3+
version: 1
4+
docker:
5+
image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04
6+
conda_file: file:conda_envs/conda_env.yml

0 commit comments

Comments
 (0)