-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtest.sh
More file actions
executable file
·23 lines (21 loc) · 906 Bytes
/
Copy pathtest.sh
File metadata and controls
executable file
·23 lines (21 loc) · 906 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
source ~/anaconda3/bin/activate;
conda activate HPC;
cd ~/GitHub/DelineatorSwitchAndCompose;
# Get a list of all possible models
list_all_models=()
input="list_files.txt"
while IFS= read -r line
do
list_all_models+=("$line")
done < "$input"
for i in {0..108}
do
model=${list_all_models[$i]};
echo $((i+1))/109 $model;
echo "";
python3 test_12lead.py --basedir ~/DADES/DADES/Delineator/ --model_name ${model} --hpc 0 --database ludb;
python3 test_12lead.py --basedir ~/DADES/DADES/Delineator/ --model_name ${model} --hpc 0 --database zhejiang;
python3 test_12lead_single.py --basedir ~/DADES/DADES/Delineator/ --model_name ${model} --hpc 0 --database ludb;
python3 test_12lead_single.py --basedir ~/DADES/DADES/Delineator/ --model_name ${model} --hpc 0 --database zhejiang;
python3 test_holter.py --basedir ~/DADES/DADES/Delineator/ --model_name ${model} --hpc 0;
done