-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathethos.json
56 lines (56 loc) · 1.42 KB
/
ethos.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
50
51
52
53
54
55
56
{
"experiment_details":"Ethos, gpt-4o, 0.7 temperature, 10 epochs, 7 batch size, 5 mini batch size, 1 iterations, 3 beam width, 2 group frequency, 0.5 epsilon",
"dataset_path": "data/ethos.jsonl",
"mini_batch_size": 5,
"batch_size": 7,
"iterations": 1,
"epochs": 10,
"logging_file_path": "logs/ethos.jsonl",
"epsilon": 0.5,
"beam_width": 3,
"group_frequency": 2,
"content_safety": true,
"cache_path": "",
"initial_prompt": "Let's think step by step.",
"dataset_name": "ethos",
"number_of_groups": 2,
"metric_kwargs": {
"type": "accuracy"
},
"solver_llm": {
"model_kwargs": {
"temperature": 0,
"model": "gpt-4o"
},
"api_kwargs": {
"api_type": "",
"api_base": "",
"api_version": "",
"api_key": ""
}
},
"expert_llm": {
"model_kwargs": {
"temperature": 0.7,
"model": "gpt-4o"
},
"api_kwargs": {
"api_type": "",
"api_base": "",
"api_version": "",
"api_key": ""
}
},
"grouping_llm": {
"model_kwargs": {
"temperature": 0.7,
"model": "gpt-4o"
},
"api_kwargs": {
"api_type": "",
"api_base": "",
"api_version": "",
"api_key": ""
}
}
}