forked from Ahmedest61/VLAD-BuFF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadd_pca.sh
More file actions
18 lines (13 loc) · 774 Bytes
/
add_pca.sh
File metadata and controls
18 lines (13 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
#############################vlad_buff
expName="dnv2_NV_AB"
resume_model="./logs/lightning_logs/${expName}/checkpoints/last.ckpt"
#python add_pca.py --ckpt_state_dict --aggregation NETVLAD --num_pcs 8192 4096 --resume_train ${resume_model} --antiburst
#############################vlad_buff_prepool
expName="dnv2_NV_PCA192_AB"
resume_model="./logs/lightning_logs/${expName}/checkpoints/last.ckpt"
#python add_pca.py --ckpt_state_dict --aggregation NETVLAD --nv_pca 192 --num_pcs 4096 --resume_train ${resume_model} --antiburst
#############################vlad
expName="dnv2_NV"
resume_model="./logs/lightning_logs/${expName}/checkpoints/last.ckpt"
#python add_pca.py --ckpt_state_dict --aggregation NETVLAD --num_pcs 8192 --resume_train ${resume_model}