-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtrain.sh
executable file
·74 lines (67 loc) · 2 KB
/
train.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/bin/bash
python train.py --dataset nuscenes \
--model-dir models/nusc/1s_forecasting \
--model-type dynamic \
--model-name occ \
--loss-type l1 \
--n-input 2 \
--n-output 2 \
--pc-range -70.0 -70.0 -4.5 70.0 70.0 4.5 \
--voxel-size 0.2 \
--batch-size 4 --num-workers 4 \
--num-epoch 15
python train.py --dataset nuscenes \
--model-dir models/nusc/3s_forecasting \
--model-type dynamic \
--model-name occ \
--loss-type l1 \
--n-input 6 \
--n-output 6 \
--pc-range -70.0 -70.0 -4.5 70.0 70.0 4.5 \
--voxel-size 0.2 \
--batch-size 8 --num-workers 8 \
--num-epoch 15
python train.py --dataset kitti \
--model-dir models/kitti/1s_forecasting \
--model-type dynamic \
--model-name occ \
--loss-type l1 \
--n-input 5 --input-step 2 \
--n-output 5 --output-step 2 \
--pc-range -70.0 -70.0 -4.5 70.0 70.0 4.5 \
--voxel-size 0.2 \
--batch-size 8 --num-workers 8 \
--num-epoch 15
python train.py --dataset kitti \
--model-dir models/kitti/3s_forecasting \
--model-type dynamic \
--model-name occ \
--loss-type l1 \
--n-input 5 --input-step 6 \
--n-output 5 --output-step 6 \
--pc-range -70.0 -70.0 -4.5 70.0 70.0 4.5 \
--voxel-size 0.2 \
--batch-size 8 --num-workers 8 \
--num-epoch 15
python train.py --dataset argoverse2 \
--model-dir models/av2/1s_forecasting \
--model-type dynamic \
--model-name occ \
--loss-type l1 \
--n-input 5 --input-step 2 \
--n-output 5 --output-step 2 \
--pc-range -70.0 -70.0 -4.5 70.0 70.0 4.5 \
--voxel-size 0.2 \
--batch-size 8 --num-workers 8 \
--num-epoch 15
python train.py --dataset argoverse2 \
--model-dir models/av2/3s_forecasting \
--model-type dynamic \
--model-name occ \
--loss-type l1 \
--n-input 5 --input-step 6 \
--n-output 5 --output-step 6 \
--pc-range -70.0 -70.0 -4.5 70.0 70.0 4.5 \
--voxel-size 0.2 \
--batch-size 8 --num-workers 8 \
--num-epoch 15