Skip to content

Commit 2ee55a5

Browse files
committed
chore: update pre-commit packages in alpha branch
1 parent d4dfe6d commit 2ee55a5

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

.github/workflows/precommitVersionBumps.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
with:
2727
persist-credentials: false
2828

29-
- name: Checkout next branch
29+
- name: Checkout alpha branch
3030
run: |
3131
git fetch
32-
git checkout next
33-
git pull origin next
32+
git checkout alpha
33+
git pull origin alpha
3434
3535
- name: Cache NPM dependencies
3636
uses: actions/cache@v4

docs/AZURE_AUTOMATEDML.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,19 @@ az ml compute create \
9494
--idle-time-before-scale-down 120
9595
```
9696

97+
```console
98+
# Create a GPU cluster. Warning: you might encounter quota availability problems depending on the region.
99+
az ml compute create \
100+
--name gpu-cluster \
101+
--type AmlCompute \
102+
--resource-group ubc-cdl10 \
103+
--workspace-name UBC-CDL10 \
104+
--size STANDARD_NC4AS_T4_V3 \
105+
--min-instances 0 \
106+
--max-instances 1 \
107+
--idle-time-before-scale-down 120
108+
```
109+
97110
**Why Standard_D2s_v3?**
98111

99112
- ✅ 2 vCPUs, 8GB RAM - perfect for small datasets

requirements/local.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
-r base.txt
99

10-
azure.functions==1.23.0
10+
azure.functions==1.23.0 # used for linting code in ./titanic-survival-app/__init__.py
1111

1212
# Code linters, formatters, and security scanners
1313
# ------------

0 commit comments

Comments
 (0)