forked from SoftSec-KAIST/TikNib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_ase_roc.sh
executable file
·41 lines (38 loc) · 1.38 KB
/
run_ase_roc.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
#!/bin/bash
set -x
source config/path_variables.py
# You can run below commands in parallel.
echo "Testing Presemantic features ..."
python helper/test_roc.py \
--input_list "${BINKIT_DATASET}/ase1_debug.txt" \
--train_funcs_limit 200000 \
--config "config/ase18/config_ase1.yml"
python helper/test_roc.py \
--input_list "${BINKIT_DATASET}/ase2_debug.txt" \
--train_funcs_limit 200000 \
--config "config/ase18/config_ase2.yml"
python helper/test_roc.py \
--input_list "${BINKIT_DATASET}/ase3_debug.txt" \
--train_funcs_limit 200000 \
--config "config/ase18/config_ase3.yml"
python helper/test_roc.py \
--input_list "${BINKIT_DATASET}/ase4_debug.txt" \
--train_funcs_limit 200000 \
--config "config/ase18/config_ase4.yml"
echo "Testing Type features ..."
python helper/test_roc.py \
--input_list "${BINKIT_DATASET}/ase1_debug.txt" \
--train_funcs_limit 200000 \
--config "config/ase18/config_type_ase1.yml"
python helper/test_roc.py \
--input_list "${BINKIT_DATASET}/ase2_debug.txt" \
--train_funcs_limit 200000 \
--config "config/ase18/config_type_ase2.yml"
python helper/test_roc.py \
--input_list "${BINKIT_DATASET}/ase3_debug.txt" \
--train_funcs_limit 200000 \
--config "config/ase18/config_type_ase3.yml"
python helper/test_roc.py \
--input_list "${BINKIT_DATASET}/ase4_debug.txt" \
--train_funcs_limit 200000 \
--config "config/ase18/config_type_ase4.yml"