absltnull commited on
Commit
dd152f2
·
verified ·
1 Parent(s): 674f9f7

Add result JSONs.

Browse files
Files changed (2) hide show
  1. results_gpt2-orao.json +202 -0
  2. results_predBor.json +202 -0
results_gpt2-orao.json ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "results": {
3
+ "hellaswag": {
4
+ "name": "hellaswag",
5
+ "alias": "hellaswag",
6
+ "sample_len": 10042,
7
+ "acc,none": 0.26926906990639315,
8
+ "acc_stderr,none": 0.00442673471880892,
9
+ "acc_norm,none": 0.2680740888269269,
10
+ "acc_norm_stderr,none": 0.004420511215131016
11
+ },
12
+ "arc_challenge": {
13
+ "name": "arc_challenge",
14
+ "alias": "arc_challenge",
15
+ "sample_len": 1172,
16
+ "acc,none": 0.1945392491467577,
17
+ "acc_stderr,none": 0.011567709174648728,
18
+ "acc_norm,none": 0.2593856655290102,
19
+ "acc_norm_stderr,none": 0.012808273573927099
20
+ }
21
+ },
22
+ "group_subtasks": {},
23
+ "configs": {
24
+ "arc_challenge": {
25
+ "task": "arc_challenge",
26
+ "dataset_path": "allenai/ai2_arc",
27
+ "dataset_name": "ARC-Challenge",
28
+ "training_split": "train",
29
+ "validation_split": "validation",
30
+ "test_split": "test",
31
+ "doc_to_text": "Question: {{question}}\nAnswer:",
32
+ "doc_to_target": "{{choices.label.index(answerKey)}}",
33
+ "unsafe_code": false,
34
+ "doc_to_choice": "{{choices.text}}",
35
+ "description": "",
36
+ "target_delimiter": " ",
37
+ "fewshot_delimiter": "\n\n",
38
+ "fewshot_config": {
39
+ "sampler": "default",
40
+ "split": null,
41
+ "process_docs": null,
42
+ "fewshot_indices": null,
43
+ "samples": null,
44
+ "doc_to_text": "Question: {{question}}\nAnswer:",
45
+ "doc_to_choice": "{{choices.text}}",
46
+ "doc_to_target": "{{choices.label.index(answerKey)}}",
47
+ "gen_prefix": null,
48
+ "fewshot_delimiter": "\n\n",
49
+ "target_delimiter": " "
50
+ },
51
+ "num_fewshot": 0,
52
+ "metric_list": [
53
+ {
54
+ "metric": "acc",
55
+ "aggregation": "mean",
56
+ "higher_is_better": true
57
+ },
58
+ {
59
+ "metric": "acc_norm",
60
+ "aggregation": "mean",
61
+ "higher_is_better": true
62
+ }
63
+ ],
64
+ "output_type": "multiple_choice",
65
+ "repeats": 1,
66
+ "should_decontaminate": true,
67
+ "doc_to_decontamination_query": "Question: {{question}}\nAnswer:",
68
+ "metadata": {
69
+ "version": 1.0,
70
+ "pretrained": "jerteh/gpt2-orao",
71
+ "config_source": "C:\\Users\\User\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\lm_eval\\tasks\\arc\\arc_challenge.yaml"
72
+ }
73
+ },
74
+ "hellaswag": {
75
+ "task": "hellaswag",
76
+ "dataset_path": "Rowan/hellaswag",
77
+ "training_split": "train",
78
+ "validation_split": "validation",
79
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n ctx = doc[\"ctx_a\"] + \" \" + doc[\"ctx_b\"].capitalize()\n out_doc = {\n \"query\": preprocess(doc[\"activity_label\"] + \": \" + ctx),\n \"choices\": [preprocess(ending) for ending in doc[\"endings\"]],\n \"gold\": int(doc[\"label\"]),\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
80
+ "doc_to_text": "{{query}}",
81
+ "doc_to_target": "{{label}}",
82
+ "unsafe_code": false,
83
+ "doc_to_choice": "choices",
84
+ "description": "",
85
+ "target_delimiter": " ",
86
+ "fewshot_delimiter": "\n\n",
87
+ "fewshot_config": {
88
+ "sampler": "default",
89
+ "split": null,
90
+ "process_docs": "<function process_docs at 0x000001BBC6DBF760>",
91
+ "fewshot_indices": null,
92
+ "samples": null,
93
+ "doc_to_text": "{{query}}",
94
+ "doc_to_choice": "choices",
95
+ "doc_to_target": "{{label}}",
96
+ "gen_prefix": null,
97
+ "fewshot_delimiter": "\n\n",
98
+ "target_delimiter": " "
99
+ },
100
+ "num_fewshot": 0,
101
+ "metric_list": [
102
+ {
103
+ "metric": "acc",
104
+ "aggregation": "mean",
105
+ "higher_is_better": true
106
+ },
107
+ {
108
+ "metric": "acc_norm",
109
+ "aggregation": "mean",
110
+ "higher_is_better": true
111
+ }
112
+ ],
113
+ "output_type": "multiple_choice",
114
+ "repeats": 1,
115
+ "should_decontaminate": false,
116
+ "metadata": {
117
+ "version": 1.0,
118
+ "pretrained": "jerteh/gpt2-orao",
119
+ "config_source": "C:\\Users\\User\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\lm_eval\\tasks\\hellaswag\\hellaswag.yaml"
120
+ }
121
+ }
122
+ },
123
+ "versions": {
124
+ "arc_challenge": 1.0,
125
+ "hellaswag": 1.0
126
+ },
127
+ "n-shot": {
128
+ "arc_challenge": 0,
129
+ "hellaswag": 0
130
+ },
131
+ "higher_is_better": {
132
+ "arc_challenge": {
133
+ "acc": true,
134
+ "acc_norm": true
135
+ },
136
+ "hellaswag": {
137
+ "acc": true,
138
+ "acc_norm": true
139
+ }
140
+ },
141
+ "n-samples": {
142
+ "hellaswag": {
143
+ "original": 10042,
144
+ "effective": 10042
145
+ },
146
+ "arc_challenge": {
147
+ "original": 1172,
148
+ "effective": 1172
149
+ }
150
+ },
151
+ "config": {
152
+ "model": "hf",
153
+ "model_args": {
154
+ "pretrained": "jerteh/gpt2-orao"
155
+ },
156
+ "model_num_parameters": 772615680,
157
+ "model_dtype": "torch.float32",
158
+ "model_revision": "main",
159
+ "model_sha": "a7dfec6b4290bcb48e579e13e39d20d0ea574449",
160
+ "batch_size": "4",
161
+ "batch_sizes": [],
162
+ "device": "cuda:0",
163
+ "use_cache": null,
164
+ "limit": null,
165
+ "bootstrap_iters": 100000,
166
+ "gen_kwargs": {},
167
+ "random_seed": 0,
168
+ "numpy_seed": 1234,
169
+ "torch_seed": 1234,
170
+ "fewshot_seed": 1234
171
+ },
172
+ "git_hash": null,
173
+ "date": 1782051514.3003025,
174
+ "pretty_env_info": "PyTorch version: 2.11.0+cu130\nIs debug build: False\nCUDA used to build PyTorch: 13.0\nROCM used to build PyTorch: N/A\n\nOS: Microsoft Windows 11 Pro (10.0.26200 64-bit)\nGCC version: Could not collect\nClang version: Could not collect\nCMake version: Could not collect\nLibc version: N/A\n\nPython version: 3.10.9 (tags/v3.10.9:1dd9be6, Dec 6 2022, 20:01:21) [MSC v.1934 64 bit (AMD64)] (64-bit runtime)\nPython platform: Windows-10-10.0.26200-SP0\nIs CUDA available: True\nCUDA runtime version: 13.0.48\r\nCUDA_MODULE_LOADING set to: \nGPU models and configuration: GPU 0: NVIDIA GeForce RTX 2050\nNvidia driver version: 591.86\ncuDNN version: Could not collect\nIs XPU available: False\nHIP runtime version: N/A\nMIOpen runtime version: N/A\nIs XNNPACK available: True\nCaching allocator config: N/A\n\nCPU:\nName: 12th Gen Intel(R) Core(TM) i5-12450H\nManufacturer: GenuineIntel\nFamily: 205\nArchitecture: 9\nProcessorType: 3\nDeviceID: CPU0\nCurrentClockSpeed: 2000\nMaxClockSpeed: 2000\nL2CacheSize: 7168\nL2CacheSpeed: None\nRevision: None\n\nVersions of relevant libraries:\n[pip3] flash_attn==2.8.3+cu130torch2.11\n[pip3] numpy==2.2.6\n[pip3] optree==0.18.0\n[pip3] rotary-embedding-torch==0.6.4\n[pip3] torch==2.11.0+cu130\n[pip3] torchaudio==2.11.0+cu130\n[pip3] torchcrepe==0.0.20\n[pip3] torchgen==0.0.1\n[pip3] torchvision==0.26.0+cu130\n[conda] Could not collect",
175
+ "transformers_version": "5.12.0",
176
+ "lm_eval_version": "0.4.12",
177
+ "upper_git_hash": null,
178
+ "tokenizer_pad_token": [
179
+ "<|endoftext|>",
180
+ "49152"
181
+ ],
182
+ "tokenizer_eos_token": [
183
+ "<|endoftext|>",
184
+ "49152"
185
+ ],
186
+ "tokenizer_bos_token": [
187
+ "<|endoftext|>",
188
+ "49152"
189
+ ],
190
+ "eot_token_id": 49152,
191
+ "max_length": 1024,
192
+ "task_hashes": {},
193
+ "model_source": "hf",
194
+ "model_name": "jerteh/gpt2-orao",
195
+ "model_name_sanitized": "jerteh__gpt2-orao",
196
+ "system_instruction": null,
197
+ "system_instruction_sha": null,
198
+ "fewshot_as_multiturn": null,
199
+ "chat_template": null,
200
+ "chat_template_sha": null,
201
+ "total_evaluation_time_seconds": "4028.2001800000007"
202
+ }
results_predBor.json ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "results": {
3
+ "hellaswag": {
4
+ "name": "hellaswag",
5
+ "alias": "hellaswag",
6
+ "sample_len": 10042,
7
+ "acc,none": 0.3040231029675364,
8
+ "acc_stderr,none": 0.00459052357205796,
9
+ "acc_norm,none": 0.34534953196574386,
10
+ "acc_norm_stderr,none": 0.004745103543901273
11
+ },
12
+ "arc_challenge": {
13
+ "name": "arc_challenge",
14
+ "alias": "arc_challenge",
15
+ "sample_len": 1172,
16
+ "acc,none": 0.18430034129692832,
17
+ "acc_stderr,none": 0.011330517933037408,
18
+ "acc_norm,none": 0.2380546075085324,
19
+ "acc_norm_stderr,none": 0.012445770028026208
20
+ }
21
+ },
22
+ "group_subtasks": {},
23
+ "configs": {
24
+ "arc_challenge": {
25
+ "task": "arc_challenge",
26
+ "dataset_path": "allenai/ai2_arc",
27
+ "dataset_name": "ARC-Challenge",
28
+ "training_split": "train",
29
+ "validation_split": "validation",
30
+ "test_split": "test",
31
+ "doc_to_text": "Question: {{question}}\nAnswer:",
32
+ "doc_to_target": "{{choices.label.index(answerKey)}}",
33
+ "unsafe_code": false,
34
+ "doc_to_choice": "{{choices.text}}",
35
+ "description": "",
36
+ "target_delimiter": " ",
37
+ "fewshot_delimiter": "\n\n",
38
+ "fewshot_config": {
39
+ "sampler": "default",
40
+ "split": null,
41
+ "process_docs": null,
42
+ "fewshot_indices": null,
43
+ "samples": null,
44
+ "doc_to_text": "Question: {{question}}\nAnswer:",
45
+ "doc_to_choice": "{{choices.text}}",
46
+ "doc_to_target": "{{choices.label.index(answerKey)}}",
47
+ "gen_prefix": null,
48
+ "fewshot_delimiter": "\n\n",
49
+ "target_delimiter": " "
50
+ },
51
+ "num_fewshot": 0,
52
+ "metric_list": [
53
+ {
54
+ "metric": "acc",
55
+ "aggregation": "mean",
56
+ "higher_is_better": true
57
+ },
58
+ {
59
+ "metric": "acc_norm",
60
+ "aggregation": "mean",
61
+ "higher_is_better": true
62
+ }
63
+ ],
64
+ "output_type": "multiple_choice",
65
+ "repeats": 1,
66
+ "should_decontaminate": true,
67
+ "doc_to_decontamination_query": "Question: {{question}}\nAnswer:",
68
+ "metadata": {
69
+ "version": 1.0,
70
+ "pretrained": "absltnull/predBor-v0.5",
71
+ "config_source": "C:\\Users\\User\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\lm_eval\\tasks\\arc\\arc_challenge.yaml"
72
+ }
73
+ },
74
+ "hellaswag": {
75
+ "task": "hellaswag",
76
+ "dataset_path": "Rowan/hellaswag",
77
+ "training_split": "train",
78
+ "validation_split": "validation",
79
+ "process_docs": "def process_docs(dataset: datasets.Dataset) -> datasets.Dataset:\n def _process_doc(doc):\n ctx = doc[\"ctx_a\"] + \" \" + doc[\"ctx_b\"].capitalize()\n out_doc = {\n \"query\": preprocess(doc[\"activity_label\"] + \": \" + ctx),\n \"choices\": [preprocess(ending) for ending in doc[\"endings\"]],\n \"gold\": int(doc[\"label\"]),\n }\n return out_doc\n\n return dataset.map(_process_doc)\n",
80
+ "doc_to_text": "{{query}}",
81
+ "doc_to_target": "{{label}}",
82
+ "unsafe_code": false,
83
+ "doc_to_choice": "choices",
84
+ "description": "",
85
+ "target_delimiter": " ",
86
+ "fewshot_delimiter": "\n\n",
87
+ "fewshot_config": {
88
+ "sampler": "default",
89
+ "split": null,
90
+ "process_docs": "<function process_docs at 0x00000137B2E4BBE0>",
91
+ "fewshot_indices": null,
92
+ "samples": null,
93
+ "doc_to_text": "{{query}}",
94
+ "doc_to_choice": "choices",
95
+ "doc_to_target": "{{label}}",
96
+ "gen_prefix": null,
97
+ "fewshot_delimiter": "\n\n",
98
+ "target_delimiter": " "
99
+ },
100
+ "num_fewshot": 0,
101
+ "metric_list": [
102
+ {
103
+ "metric": "acc",
104
+ "aggregation": "mean",
105
+ "higher_is_better": true
106
+ },
107
+ {
108
+ "metric": "acc_norm",
109
+ "aggregation": "mean",
110
+ "higher_is_better": true
111
+ }
112
+ ],
113
+ "output_type": "multiple_choice",
114
+ "repeats": 1,
115
+ "should_decontaminate": false,
116
+ "metadata": {
117
+ "version": 1.0,
118
+ "pretrained": "absltnull/predBor-v0.5",
119
+ "config_source": "C:\\Users\\User\\AppData\\Local\\Programs\\Python\\Python310\\lib\\site-packages\\lm_eval\\tasks\\hellaswag\\hellaswag.yaml"
120
+ }
121
+ }
122
+ },
123
+ "versions": {
124
+ "arc_challenge": 1.0,
125
+ "hellaswag": 1.0
126
+ },
127
+ "n-shot": {
128
+ "arc_challenge": 0,
129
+ "hellaswag": 0
130
+ },
131
+ "higher_is_better": {
132
+ "arc_challenge": {
133
+ "acc": true,
134
+ "acc_norm": true
135
+ },
136
+ "hellaswag": {
137
+ "acc": true,
138
+ "acc_norm": true
139
+ }
140
+ },
141
+ "n-samples": {
142
+ "hellaswag": {
143
+ "original": 10042,
144
+ "effective": 10042
145
+ },
146
+ "arc_challenge": {
147
+ "original": 1172,
148
+ "effective": 1172
149
+ }
150
+ },
151
+ "config": {
152
+ "model": "hf",
153
+ "model_args": {
154
+ "pretrained": "absltnull/predBor-v0.5"
155
+ },
156
+ "model_num_parameters": 779392512,
157
+ "model_dtype": "torch.float32",
158
+ "model_revision": "main",
159
+ "model_sha": "d2f6884ce777628ec6e05aba33b2154c0fc01890",
160
+ "batch_size": "4",
161
+ "batch_sizes": [],
162
+ "device": "cuda:0",
163
+ "use_cache": null,
164
+ "limit": null,
165
+ "bootstrap_iters": 100000,
166
+ "gen_kwargs": {},
167
+ "random_seed": 0,
168
+ "numpy_seed": 1234,
169
+ "torch_seed": 1234,
170
+ "fewshot_seed": 1234
171
+ },
172
+ "git_hash": null,
173
+ "date": 1782048025.6308908,
174
+ "pretty_env_info": "PyTorch version: 2.11.0+cu130\nIs debug build: False\nCUDA used to build PyTorch: 13.0\nROCM used to build PyTorch: N/A\n\nOS: Microsoft Windows 11 Pro (10.0.26200 64-bit)\nGCC version: Could not collect\nClang version: Could not collect\nCMake version: Could not collect\nLibc version: N/A\n\nPython version: 3.10.9 (tags/v3.10.9:1dd9be6, Dec 6 2022, 20:01:21) [MSC v.1934 64 bit (AMD64)] (64-bit runtime)\nPython platform: Windows-10-10.0.26200-SP0\nIs CUDA available: True\nCUDA runtime version: 13.0.48\r\nCUDA_MODULE_LOADING set to: \nGPU models and configuration: GPU 0: NVIDIA GeForce RTX 2050\nNvidia driver version: 591.86\ncuDNN version: Could not collect\nIs XPU available: False\nHIP runtime version: N/A\nMIOpen runtime version: N/A\nIs XNNPACK available: True\nCaching allocator config: N/A\n\nCPU:\nName: 12th Gen Intel(R) Core(TM) i5-12450H\nManufacturer: GenuineIntel\nFamily: 205\nArchitecture: 9\nProcessorType: 3\nDeviceID: CPU0\nCurrentClockSpeed: 2000\nMaxClockSpeed: 2000\nL2CacheSize: 7168\nL2CacheSpeed: None\nRevision: None\n\nVersions of relevant libraries:\n[pip3] flash_attn==2.8.3+cu130torch2.11\n[pip3] numpy==2.2.6\n[pip3] optree==0.18.0\n[pip3] rotary-embedding-torch==0.6.4\n[pip3] torch==2.11.0+cu130\n[pip3] torchaudio==2.11.0+cu130\n[pip3] torchcrepe==0.0.20\n[pip3] torchgen==0.0.1\n[pip3] torchvision==0.26.0+cu130\n[conda] Could not collect",
175
+ "transformers_version": "5.12.0",
176
+ "lm_eval_version": "0.4.12",
177
+ "upper_git_hash": null,
178
+ "tokenizer_pad_token": [
179
+ "<unk>",
180
+ "0"
181
+ ],
182
+ "tokenizer_eos_token": [
183
+ "</s>",
184
+ "2"
185
+ ],
186
+ "tokenizer_bos_token": [
187
+ "<s>",
188
+ "1"
189
+ ],
190
+ "eot_token_id": 2,
191
+ "max_length": 4096,
192
+ "task_hashes": {},
193
+ "model_source": "hf",
194
+ "model_name": "absltnull/predBor-v0.5",
195
+ "model_name_sanitized": "absltnull__predBor-v0.5",
196
+ "system_instruction": null,
197
+ "system_instruction_sha": null,
198
+ "fewshot_as_multiturn": null,
199
+ "chat_template": null,
200
+ "chat_template_sha": null,
201
+ "total_evaluation_time_seconds": "2531.7302202"
202
+ }