forked from Sundrops/video-caption.pytorch
-
Notifications
You must be signed in to change notification settings - Fork 3
/
eval_s2vt.sh
executable file
·71 lines (59 loc) · 1.62 KB
/
eval_s2vt.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
#!/bin/bash
### nasnet_resnet101_40frames
feat=nasnet_resnet101_40frames
epoch=60
python eval.py \
--rnn_type lstm \
--results_path result/$feat/s2vt \
--recover_opt checkpoint/$feat/s2vt/opt_info.json \
--saved_model checkpoint/$feat/s2vt/model_$epoch.pth \
--batch_size 100 \
--gpu 0
# ### nasnet_40frames
# feat=nasnet_40frames
# epoch=250
# python eval.py \
# --rnn_type lstm \
# --results_path result/$feat/s2vt \
# --recover_opt checkpoint/$feat/s2vt/opt_info.json \
# --saved_model checkpoint/$feat/s2vt/model_$epoch.pth \
# --batch_size 100 \
# --gpu 0
### inception_v4 40frames
# feat=inception_v4_40frames
# epoch=300
# python eval.py \
# --rnn_type lstm \
# --results_path result/$feat/s2vt \
# --recover_opt checkpoint/$feat/s2vt/opt_info.json \
# --saved_model checkpoint/$feat/s2vt/model_$epoch.pth \
# --batch_size 100 \
# --gpu 0
# feat=resnet101_40frames
# epoch=150
# python eval.py \
# --rnn_type lstm \
# --results_path result/$feat/s2vt \
# --recover_opt checkpoint/$feat/s2vt/opt_info.json \
# --saved_model checkpoint/$feat/s2vt/model_$epoch.pth \
# --batch_size 100 \
# --gpu 1
# feat=resnet101_c3d_fc7_wo_ft
# epoch=150
# python eval.py \
# --rnn_type lstm \
# --results_path result/$feat/s2vt \
# --recover_opt checkpoint/$feat/s2vt/opt_info.json \
# --saved_model checkpoint/$feat/s2vt/model_$epoch.pth \
# --batch_size 100 \
# --gpu 1
# feat=resnet101_80frames
# feat=resnet101
# epoch=150
# python eval.py \
# --rnn_type lstm \
# --results_path result/$feat/s2vt \
# --recover_opt checkpoint/$feat/s2vt/opt_info.json \
# --saved_model checkpoint/$feat/s2vt/model_$epoch.pth \
# --batch_size 100 \
# --gpu 1