-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathatt_visualization.sh
executable file
·78 lines (72 loc) · 2.57 KB
/
att_visualization.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
75
76
77
78
# source
CUDA_VISIBLE_DEVICES=1 python3 att_visualization.py \
--pretrained_model bash/pretrained_source_models/kinetics-nec-source-head+partial-191p572e-ep=19.ckpt \
--dataset /data/datasets/nec-drone/cropped/test \
--n_frames 16 \
--frame_size 224 \
--batch_size 1 \
--n_clips 1 \
--num_workers 8 \
--replace_with_mlp \
--mlp_n_layers 0 \
--out_folder nec_attention_visualization_source_only
# da
CUDA_VISIBLE_DEVICES=0 python3 att_visualization.py \
--pretrained_model bash/trained_models/2th5tb5j/kinetics-nec-head+temporal-barlow-unsup-2th5tb5j-ep=19.ckpt \
--dataset /data/datasets/nec-drone/cropped/test \
--n_frames 16 \
--frame_size 224 \
--batch_size 1 \
--n_clips 1 \
--num_workers 8 \
--replace_with_mlp \
--mlp_n_layers 0 \
--out_folder nec_attention_visualization_2th5tb5j
# -----------------------------------
# source
CUDA_VISIBLE_DEVICES=0 python3 att_visualization.py \
--pretrained_model bash/pretrained_source_models/hmdb-ucf-source-head+partial-35xc7vyr-ep=19.ckpt \
--dataset /data/datasets/hmdb_ucf/ucf/test \
--n_frames 16 \
--frame_size 224 \
--batch_size 1 \
--n_clips 1 \
--num_workers 8 \
--replace_with_mlp \
--mlp_n_layers 0 \
--out_folder hmdb_ucf_visualization_source_only
CUDA_VISIBLE_DEVICES=1 python3 att_visualization.py \
--pretrained_model bash/trained_models/2vn14tbb/hmdb-ucf-head+temporal-barlow-unsup-2vn14tbb-ep=19.ckpt \
--dataset /data/datasets/hmdb_ucf/ucf/test \
--n_frames 16 \
--frame_size 224 \
--batch_size 1 \
--n_clips 1 \
--num_workers 8 \
--replace_with_mlp \
--mlp_n_layers 0 \
--out_folder hmdb_ucf_attention_visualization_2vn14tbb
# -------------------------------------
CUDA_VISIBLE_DEVICES=0 python3 att_visualization.py \
--pretrained_model bash/pretrained_source_models/ucf-hmdb-source-head+partial-343fe6qo-ep=19.ckpt \
--dataset /data/datasets/hmdb_ucf/hmdb/test \
--n_frames 16 \
--frame_size 224 \
--batch_size 1 \
--n_clips 1 \
--num_workers 8 \
--replace_with_mlp \
--mlp_n_layers 0 \
--out_folder ucf_hmdb_visualization_source_only
# da
CUDA_VISIBLE_DEVICES=1 python3 att_visualization.py \
--pretrained_model bash/trained_models/1sovt50y/ucf-hmdb-head+temporal-barlow-unsup-1sovt50y-ep=19.ckpt \
--dataset /data/datasets/hmdb_ucf/hmdb/test \
--n_frames 16 \
--frame_size 224 \
--batch_size 1 \
--n_clips 1 \
--num_workers 8 \
--replace_with_mlp \
--mlp_n_layers 0 \
--out_folder ucf_hmdb_visualization_1sovt50y