Skip to content

Commit 4105798

Browse files
committed
fix: forgotten comma
1 parent b892a3a commit 4105798

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ runai project set <your project>
5757
```
5858

5959
```
60-
runai workspace submit openpulse-training \
60+
runai workspace submit openpulse-training2 \
6161
-i ghcr.io/sdsc-ordes/open-pulse-graph-classifier-train:latest \
62-
--gpu 1 \
62+
--gpu-request-type portion --gpu-portion-request 0.9 \
6363
--image-pull-policy Always \
6464
--attach
6565
```

src/classifier/processing/loaders.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def build_loader(
88
split_idx,
99
shuffle,
1010
batch_size=32,
11-
num_neighbors=[10, 5]
11+
num_neighbors=[10, 5],
1212
random_state=42,
1313
):
1414
return NeighborLoader(

0 commit comments

Comments
 (0)