-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsort.qsub
25 lines (19 loc) · 937 Bytes
/
sort.qsub
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
#!/bin/bash
#$ -pe smp 8
#$ -l h_vmem=1G
#$ -l h_rt=1:0:0
#$ -cwd
#$ -j y
module purge
module load python
source .venv/bin/activate
python3 -m pip install opencv-python
python3 -m pip install opencv-contrib-python
# python3 feature_order/feature_order.py --bbox_dir "/data/EECS-YuanLab/COCO/butd_box/" \
# --feature_dir "/data/EECS-YuanLab/COCO/butd_clip/" \
# --output_dir "/data/scratch/eey362/butd_clip_sorted/" \
python3 feature_order/saliency.py --karpathy_json_path "/data/EECS-YuanLab/COCO/dataset_coco.json" \
--image_dir "" \
--feature_dir "/data/EECS-YuanLab/COCO/butd_att/" \
--bbox_dir "/data/EECS-YuanLab/COCO/butd_box/" \
--output_dir "/data/scratch/eey362/butd_att_sorted_saliency/data/PublicDataSets/Coco-2014/" \