forked from roeehendel/icl_task_vectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiments_config.py
38 lines (37 loc) · 986 Bytes
/
experiments_config.py
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
TASKS_TO_EVALUATE = [
# One for each category
"translation_fr_en",
"linguistic_present_simple_gerund",
"knowledge_country_capital",
"algorithmic_next_letter",
# Translation
"translation_es_en",
"translation_en_fr",
"translation_en_es",
# Linguistic
"linguistic_present_simple_past_simple",
"linguistic_plural_singular",
"linguistic_antonyms",
# Knowledge
"knowledge_person_language",
"knowledge_location_continent",
"knowledge_location_religion",
# Algorithmic
"algorithmic_prev_letter",
"algorithmic_list_first",
"algorithmic_list_last",
"algorithmic_to_upper",
"algorithmic_to_lower",
]
MODELS_TO_EVALUATE = [
# ("gpt-2", "1.5B"),
("pythia", "2.8B"),
("llama", "7B"),
("gpt-j", "6B"),
("pythia", "6.9B"),
("llama", "13B"),
("pythia", "12B"),
("llama", "30B"),
# ("mpt", "7B"), # error in ForwardTracer
# ("falcon", "7B"), # error in past_key_values
]