-
Notifications
You must be signed in to change notification settings - Fork 10
/
test_correlation_system.sh
78 lines (55 loc) · 8.22 KB
/
test_correlation_system.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# SummEval - Consistency
python test_correlation_system.py --dataset_name summeval --aspect consistency --aligner_type bert --bert_model_type bert-base-uncased --aggr_type mean
python test_correlation_system.py --dataset_name summeval --aspect consistency --aligner_type bert --aggr_type mean
python test_correlation_system.py --dataset_name summeval --aspect consistency --aligner_type disc --disc_init ckpts/cnndm/disc.ckpt --aggr_type mean
python test_correlation_system.py --dataset_name summeval --aspect consistency --aligner_type disc --disc_init ckpts/xsum/disc.ckpt --aggr_type mean
python test_correlation_system.py --dataset_name summeval --aspect consistency --aligner_type bleurt --bleurt_init ckpts/cnndm/reg
python test_correlation_system.py --dataset_name summeval --aspect consistency --aligner_type bleurt --bleurt_init ckpts/xsum/reg
# SummEval - Relevance - 11 References
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type bert --bert_model_type bert-base-uncased --aggr_type mean
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type bert --aggr_type mean
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type disc --disc_init ckpts/cnndm_ref/disc.ckpt --relevance_y_x_init ckpts/cnndm/disc.ckpt --aggr_type mean
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type disc --disc_init ckpts/cnndm_ref/disc.ckpt --relevance_y_x_init ckpts/xsum/disc.ckpt --aggr_type mean
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type bleurt --bleurt_init ckpts/cnndm_ref/reg --relevance_y_x_init ckpts/cnndm/reg
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type bleurt --bleurt_init ckpts/cnndm_ref/reg --relevance_y_x_init ckpts/xsum/reg
# SummEval - Relevance - 1 References
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type bert --bert_model_type bert-base-uncased --aggr_type mean --n_references 1
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type bert --aggr_type mean --n_references 1
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type disc --disc_init ckpts/cnndm_ref/disc.ckpt --relevance_y_x_init ckpts/cnndm/disc.ckpt --aggr_type mean --n_references 1
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type disc --disc_init ckpts/cnndm_ref/disc.ckpt --relevance_y_x_init ckpts/xsum/disc.ckpt --aggr_type mean --n_references 1
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type bleurt --bleurt_init ckpts/cnndm_ref/reg --relevance_y_x_init ckpts/cnndm/reg --n_references 1
python test_correlation_system.py --dataset_name summeval --aspect relevance --aligner_type bleurt --bleurt_init ckpts/cnndm_ref/reg --relevance_y_x_init ckpts/xsum/reg --n_references 1
# Yelp
python test_correlation_system.py --dataset_name yelp --aspect preservation --aligner_type bert --bert_model_type bert-base-uncased --aggr_type mean
python test_correlation_system.py --dataset_name yelp --aspect preservation --aligner_type bert --aggr_type mean
python test_correlation_system.py --dataset_name yelp --aspect preservation --aligner_type bert --bert_model_type roberta-large-mnli --bert_num_layers 9 --aggr_type mean
python test_correlation_system.py --dataset_name yelp --aspect preservation --aligner_type disc --disc_init ckpts/yelp/disc.ckpt --aggr_type mean
python test_correlation_system.py --dataset_name yelp --aspect preservation --aligner_type bleurt --bleurt_init ckpts/yelp/reg
# PersonaChat - Engagingness
python test_correlation_system.py --dataset_name persona_chat --aspect engaging --aligner_type bert --bert_model_type bert-base-uncased --remove_stopwords --aggr_type sum --dialog_context fact_history
python test_correlation_system.py --dataset_name persona_chat --aspect engaging --aligner_type bert --remove_stopwords --aggr_type sum --dialog_context fact_history
python test_correlation_system.py --dataset_name persona_chat --aspect engaging --aligner_type disc --disc_init ckpts/persona_chat/disc_fact_history.ckpt --remove_stopwords --aggr_type sum --dialog_context fact_history
python test_correlation_system.py --dataset_name persona_chat --aspect engaging --aligner_type disc --disc_init ckpts/topical_chat/disc_fact_history.ckpt --remove_stopwords --aggr_type sum --dialog_context fact_history
python test_correlation_system.py --dataset_name persona_chat --aspect engaging --aligner_type bleurt --bleurt_init ckpts/persona_chat/reg --dialog_context fact_history
python test_correlation_system.py --dataset_name persona_chat --aspect engaging --aligner_type bleurt --bleurt_init ckpts/topical_chat/reg --dialog_context fact_history
# PersonaChat - Groundedness
python test_correlation_system.py --dataset_name persona_chat --aspect uses_knowledge --aligner_type bert --bert_model_type bert-base-uncased --remove_stopwords --aggr_type sum --dialog_context fact
python test_correlation_system.py --dataset_name persona_chat --aspect uses_knowledge --aligner_type bert --remove_stopwords --aggr_type sum --dialog_context fact
python test_correlation_system.py --dataset_name persona_chat --aspect uses_knowledge --aligner_type disc --disc_init ckpts/persona_chat_fact/disc_fact.ckpt --remove_stopwords --aggr_type sum --dialog_context fact
python test_correlation_system.py --dataset_name persona_chat --aspect uses_knowledge --aligner_type disc --disc_init ckpts/topical_chat_fact/disc_fact.ckpt --remove_stopwords --aggr_type sum --dialog_context fact
python test_correlation_system.py --dataset_name persona_chat --aspect uses_knowledge --aligner_type bleurt --bleurt_init ckpts/persona_chat_fact/reg --dialog_context fact
python test_correlation_system.py --dataset_name persona_chat --aspect uses_knowledge --aligner_type bleurt --bleurt_init ckpts/topical_chat_fact/reg --dialog_context fact
# TopicalChat - Engagingness
python test_correlation_system.py --dataset_name topical_chat --aspect engaging --aligner_type bert --bert_model_type bert-base-uncased --remove_stopwords --aggr_type sum --dialog_context fact_history
python test_correlation_system.py --dataset_name topical_chat --aspect engaging --aligner_type bert --aggr_type sum --remove_stopwords --dialog_context fact_history
python test_correlation_system.py --dataset_name topical_chat --aspect engaging --aligner_type disc --disc_init ckpts/persona_chat/disc_fact_history.ckpt --remove_stopwords --aggr_type sum --dialog_context fact_history
python test_correlation_system.py --dataset_name topical_chat --aspect engaging --aligner_type disc --disc_init ckpts/topical_chat/disc_fact_history.ckpt --remove_stopwords --aggr_type sum --dialog_context fact_history
python test_correlation_system.py --dataset_name topical_chat --aspect engaging --aligner_type bleurt --bleurt_init ckpts/persona_chat/reg --dialog_context fact_history
python test_correlation_system.py --dataset_name topical_chat --aspect engaging --aligner_type bleurt --bleurt_init ckpts/topical_chat/reg --dialog_context fact_history
# TopicalChat - Groundedness
python test_correlation_system.py --dataset_name topical_chat --aspect uses_knowledge --aligner_type bert --bert_model_type bert-base-uncased --remove_stopwords --aggr_type sum --dialog_context fact
python test_correlation_system.py --dataset_name topical_chat --aspect uses_knowledge --aligner_type bert --remove_stopwords --aggr_type sum --dialog_context fact
python test_correlation_system.py --dataset_name topical_chat --aspect uses_knowledge --aligner_type disc --disc_init ckpts/persona_chat_fact/disc_fact.ckpt --remove_stopwords --aggr_type sum --dialog_context fact
python test_correlation_system.py --dataset_name topical_chat --aspect uses_knowledge --aligner_type disc --disc_init ckpts/topical_chat_fact/disc_fact.ckpt --remove_stopwords --aggr_type sum --dialog_context fact
python test_correlation_system.py --dataset_name topical_chat --aspect uses_knowledge --aligner_type bleurt --bleurt_init ckpts/persona_chat_fact/reg --dialog_context fact
python test_correlation_system.py --dataset_name topical_chat --aspect uses_knowledge --aligner_type bleurt --bleurt_init ckpts/topical_chat_fact/reg --dialog_context fact