-
Notifications
You must be signed in to change notification settings - Fork 12
/
run_ucf101.sh
executable file
·27 lines (24 loc) · 1.5 KB
/
run_ucf101.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
NEPOCH=50
LAMBDA1=10
COSEM_WEIGHT=0.1
RECONS_WEIGHT=0.01
LR=0.0001
BATCH_SIZE=64
SYN_NUM=600
RESSZ=8192
NDH=4096
NGH=4096
ATTSZ=300
NZ=300
# GZSL-OD
python clswgan_action.py --gzsl_od --nclass_all 101 --dataroot data_action --manualSeed 806 --ngh $NGH --ndh $NDH --lambda1 $LAMBDA1 --critic_iter 5 \
--cosem_weight $COSEM_WEIGHT --recons_weight $RECONS_WEIGHT --syn_num 50 --preprocessing --cuda --batch_size $BATCH_SIZE --nz $NZ --attSize $ATTSZ --resSize $RESSZ --lr $LR \
--action_embedding i3d --class_embedding att --netG_name MLP_G --netD_name MLP_CRITIC --nepoch $NEPOCH --dataset ucf101 --split 1
# GZSL
python clswgan_action.py --gzsl --nclass_all 101 --dataroot data_action --manualSeed 806 --ngh $NGH --ndh $NDH --lambda1 $LAMBDA1 --critic_iter 5 \
--cosem_weight $COSEM_WEIGHT --recons_weight $RECONS_WEIGHT --syn_num $SYN_NUM --preprocessing --cuda --batch_size $BATCH_SIZE --nz $NZ --attSize $ATTSZ --resSize $RESSZ --lr $LR \
--action_embedding i3d --class_embedding att --netG_name MLP_G --netD_name MLP_CRITIC --nepoch $NEPOCH --dataset ucf101 --split 1
# ZSL
python clswgan_action.py --nclass_all 101 --dataroot data_action --manualSeed 806 --ngh $NGH --ndh $NDH --lambda1 $LAMBDA1 --critic_iter 5 \
--cosem_weight $COSEM_WEIGHT --recons_weight $RECONS_WEIGHT --syn_num $SYN_NUM --preprocessing --cuda --batch_size $BATCH_SIZE --nz $NZ --attSize $ATTSZ --resSize $RESSZ --lr $LR \
--action_embedding i3d --class_embedding att --netG_name MLP_G --netD_name MLP_CRITIC --nepoch $NEPOCH --dataset ucf101 --split 1