-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeta_eval.sh
40 lines (37 loc) · 1.19 KB
/
meta_eval.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
# Get average performance of different base LLMs
python meta_eval.py \
--datasets llmbar_natural llmbar_adversarial mtbench instrusum \
--methods_dir misc/methods.yaml \
--models_dir misc/models.yaml \
--aggregate_methods \
--cal_avg \
--sorted \
--use_cache
# Get average performance of benchmark evaluation protocols
python meta_eval.py \
--datasets llmbar_natural llmbar_adversarial mtbench instrusum \
--methods_dir misc/benchmark_methods.yaml \
--models_dir misc/models.yaml \
--aggregate_models \
--cal_avg \
--sorted \
--use_cache
# Get average performance of different evaluation protocols
python meta_eval.py \
--datasets llmbar_natural llmbar_adversarial mtbench instrusum \
--methods_dir misc/methods.yaml \
--models_dir misc/models.yaml \
--aggregate_models \
--cal_avg \
--sorted \
--use_cache
# Get optimal performance of different evaluation protocols
python meta_eval.py \
--datasets llmbar_natural llmbar_adversarial mtbench instrusum \
--methods_dir misc/methods.yaml \
--models_dir misc/models.yaml \
--aggregate_models \
--aggregation_mode max \
--cal_avg \
--sorted \
--use_cache