-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathkinetics400.sh
executable file
·74 lines (61 loc) · 1.88 KB
/
kinetics400.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
74
#!/bin/bash
if [ ! -f .env ]
then
export $(cat .env | xargs)
fi
MODEL="cox3d"
DATASET=kinetics400
BATCH_SIZE=64
GPUS=1
LOGGING_BACKEND="wandb"
for SIZE in s m
do
echo "========================== ${SIZE} =========================="
python models/cox3d/main.py \
--id "${MODEL}_${SIZE}_profile_${DATASET}" \
--dataset $DATASET \
--gpus $GPUS \
--seed 123 \
--batch_size $BATCH_SIZE \
--from_hparams_file models/x3d/hparams/$SIZE.yaml \
--profile_model \
--logging_backend $LOGGING_BACKEND \
--co3d_forward_mode frame \
echo "========================== ${SIZE} 64 =========================="
python $PROJECT/main.py \
--id "${MODEL}_${SIZE}_64_profile_${DATASET}" \
--dataset $DATASET \
--gpus $GPUS \
--seed 123 \
--batch_size $BATCH_SIZE \
--from_hparams_file models/x3d/hparams/$SIZE.yaml \
--profile_model \
--logging_backend $LOGGING_BACKEND \
--co3d_forward_mode frame \
--temporal_window_size 64 \
done
SIZE=l
BATCH_SIZE=32
echo "========================== ${SIZE} =========================="
python models/cox3d/main.py \
--id "${MODEL}_${SIZE}_profile_${DATASET}" \
--dataset $DATASET \
--gpus $GPUS \
--seed 123 \
--batch_size $BATCH_SIZE \
--from_hparams_file models/x3d/hparams/$SIZE.yaml \
--profile_model \
--logging_backend $LOGGING_BACKEND \
--co3d_forward_mode frame \
echo "========================== ${SIZE} 64 =========================="
python $PROJECT/main.py \
--id "${MODEL}_${SIZE}_64_profile_${DATASET}" \
--dataset $DATASET \
--gpus $GPUS \
--seed 123 \
--batch_size $BATCH_SIZE \
--from_hparams_file models/x3d/hparams/$SIZE.yaml \
--profile_model \
--logging_backend $LOGGING_BACKEND \
--co3d_forward_mode frame \
--temporal_window_size 64 \