-
Notifications
You must be signed in to change notification settings - Fork 3
/
assessment_ai_act.sh
26 lines (21 loc) · 1.36 KB
/
assessment_ai_act.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
source .env/bin/activate
cd demo
# NLTK_DATA=$MY_DIR/.env/nltk_data
mkdir logs
mkdir cache
ANSWER_PERTINENCE_THRESHOLD=0.6
SYNONYMITY_THRESHOLD=0.5
#### Credit Approval System - V1
# ## TF
# mkdir cache/cache_exp3_ca_v1
# python assess_degree_of_explainability.py tf $ANSWER_PERTINENCE_THRESHOLD $SYNONYMITY_THRESHOLD ./data/experiment_3/explicanda ./data/experiment_3/explainable_information/credit_approval_system/v1 ./cache/cache_exp3_ca_v1 &> ./logs/exp3.ca_v1.tf.log.txt
## FB
mkdir cache/cache_exp3_ca_v1
python assess_degree_of_explainability.py fb $ANSWER_PERTINENCE_THRESHOLD $SYNONYMITY_THRESHOLD ./data/experiment_3/explicanda ./data/experiment_3/explainable_information/credit_approval_system/v1 ./cache/cache_exp3_ca_v1 &> ./logs/exp3.ca_v1.fb.log.txt
#### Credit Approval System - V2
# ## TF
# mkdir cache/cache_exp3_ca_v2
# python assess_degree_of_explainability.py tf $ANSWER_PERTINENCE_THRESHOLD $SYNONYMITY_THRESHOLD ./data/experiment_3/explicanda ./data/experiment_3/explainable_information/credit_approval_system/v2 ./cache/cache_exp3_ca_v2 &> ./logs/exp3.ca_v2.tf.log.txt
## FB
mkdir cache/cache_exp3_ca_v2
python assess_degree_of_explainability.py fb $ANSWER_PERTINENCE_THRESHOLD $SYNONYMITY_THRESHOLD ./data/experiment_3/explicanda ./data/experiment_3/explainable_information/credit_approval_system/v2 ./cache/cache_exp3_ca_v2 &> ./logs/exp3.ca_v2.fb.log.txt