forked from KarelDO/xmc.dspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlm_config.json
49 lines (49 loc) · 1.09 KB
/
lm_config.json
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
{
"llama-2-13b-chat": {
"url": "http://future-hgx-1",
"model": "meta-llama/Llama-2-13b-chat-hf",
"temperature": 0.01,
"max_tokens": 150,
"top_p": 0.97,
"n": 1,
"stop": [
"\n\n"
]
},
"gpt-4-1106-preview": {
"model": "gpt-4-1106-preview",
"temperature": 0.0,
"max_tokens": 150,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"n": 1,
"stop": [
"\n\n"
]
},
"gpt-3.5-turbo-instruct": {
"model": "gpt-3.5-turbo-instruct",
"temperature": 0.0,
"max_tokens": 150,
"top_p": 1,
"frequency_penalty": 0,
"presence_penalty": 0,
"n": 1,
"stop": [
"\n\n"
]
},
"gpt-3.5-turbo-instruct-penalty": {
"model": "gpt-3.5-turbo-instruct",
"temperature": 0.0,
"max_tokens": 150,
"top_p": 1,
"frequency_penalty": 0.1,
"presence_penalty": 0,
"n": 1,
"stop": [
"\n\n"
]
}
}