-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigs.py
49 lines (45 loc) · 1.21 KB
/
configs.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
39
40
41
42
43
44
45
46
47
48
49
DATA_DIR = "data"
RESULT_DIR = "results"
PROMPTS_DIR = "prompts"
hf_token = "hf_xxxx"
deep_infra_token = "xxx"
together_token = "xxxx"
model_names_dict = {
"gsm8k": {
0: "Llama-2-7b-chat-hf",
1: "Llama-2-13b-chat-hf",
2: "Mixtral-8x7B-Instruct-v0.1",
3: "gemma-7b",
4: "gemma-2b",
5: "Llama-2-70b-chat-hf",
6: "Mistral-7B-Instruct-v0.2",
7: "phi-2"
},
"mmlu": {
0: "Mixtral-8x7B-Instruct-v0.1",
1: "gemma-7b-it",
2: "Llama-2-13b-chat-hf",
3: "Llama-2-70b-chat-hf",
4: "Mistral-7B-Instruct-v0.1"
},
"search_qa": {
0: "Mixtral-8x7B-Instruct-v0.1",
1: "gemma-7b-it",
2: "Llama-2-13b-chat-hf",
3: "Llama-2-70b-chat-hf",
4: "Mistral-7B-Instruct-v0.1"
}
}
llm_domains = {
"phi-2": "microsoft",
"gemma-2b": "google",
"gemma-7b": "google",
"gemma-7b-it": "google",
"gemma-2b-it": "google",
"Mistral-7B-Instruct-v0.2": "mistralai",
"Mistral-7B-Instruct-v0.1": "mistralai",
"Mixtral-8x7B-Instruct-v0.1": "mistralai",
"Llama-2-7b-chat-hf": "meta-llama",
"Llama-2-13b-chat-hf": "meta-llama",
"Llama-2-70b-chat-hf": "meta-llama",
}