-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrain.sh
executable file
·17 lines (16 loc) · 882 Bytes
/
train.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
CUDA_VISIBLE_DEVICES=2,3,4,5,6,7 torchrun --standalone \
--nproc_per_node=6 train.py --outdir=training_runs \
--cond=0 \
--lr=2e-5 \
--arch=ddpmpp \
--batch=72 \
--batch-gpu=12 \
--duration=200 \
--log_freq=1000 \
--tick=400 \
--snap=5 \
--dump=5 \
--seed=321 \
--data=/workspace/data/srncars/cars \
--cam_weighting_method=baseline_mean \