apsys commited on
Commit
3a8f021
verified
1 Parent(s): 8d4284a

Delete model_data/external/vikhr-53-32k-7bapsys.json

Browse files
model_data/external/vikhr-53-32k-7bapsys.json DELETED
@@ -1,233 +0,0 @@
1
- {
2
- "results": {
3
- "musicmc": {
4
- "acc,none": 0.24468085106382978,
5
- "acc_stderr,none": 0.019850836731679165,
6
- "alias": "musicmc"
7
- },
8
- "moviemc": {
9
- "acc,none": 0.4050925925925926,
10
- "acc_stderr,none": 0.02364630048710984,
11
- "alias": "moviemc"
12
- },
13
- "lawmc": {
14
- "acc,none": 0.4788877445932029,
15
- "acc_stderr,none": 0.016039714649993996,
16
- "alias": "lawmc"
17
- },
18
- "bookmc": {
19
- "acc,none": 0.3049792531120332,
20
- "acc_stderr,none": 0.02099237106666469,
21
- "alias": "bookmc"
22
- }
23
- },
24
- "group_subtasks": {
25
- "bookmc": [],
26
- "lawmc": [],
27
- "moviemc": [],
28
- "musicmc": []
29
- },
30
- "configs": {
31
- "bookmc": {
32
- "task": "bookmc",
33
- "dataset_path": "Vikhrmodels/books_mc",
34
- "training_split": "train",
35
- "validation_split": "train",
36
- "process_docs": "def process_docs(dataset: Dataset):\n def _helper(doc,index):\n field = doc['correct_answer']\n fi = None\n if field == 'answerA' or field in ['A','袗']:\n fi = \"A\"\n if field == 'answerB' or field in ['B','袘']:\n fi = \"B\"\n if field == 'answerC' or field in ['C','小']:\n fi = \"C\"\n if field == 'answerD' or field in ['D','袛']:\n fi = \"D\"\n if fi:\n doc[\"choices\"] = [doc[f\"answer{s}\"] for s in list('ABCD')]\n\n else:\n for idx,(key,val) in enumerate(list(doc.items())[1:-1]):\n if field == val:\n fi = {0:\"A\",1:\"B\",2:\"C\",3:\"D\"}.get(idx)\n\n\n doc[\"choices\"] = [doc[f\"answer{s}\"] for s in list('ABCD')]\n if index == 0:\n next_doc1 = dataset[index + 1]\n next_doc2 = dataset[index + 2] if index + 2 < len(dataset) else None\n doc[\"choices\"].extend([next_doc1[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([next_doc2[f\"answer{s}\"] for s in list('ABCD')])\n elif index == len(dataset) - 1:\n prev_doc1 = dataset[index - 1]\n prev_doc2 = dataset[index - 2]\n doc[\"choices\"].extend([prev_doc1[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([prev_doc2[f\"answer{s}\"] for s in list('ABCD')])\n else:\n prev_doc = dataset[index - 1]\n next_doc = dataset[index + 1]\n doc[\"choices\"].extend([prev_doc[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([next_doc[f\"answer{s}\"] for s in list('ABCD')])\n\n label_map = {label: i for i, label in enumerate(string.ascii_uppercase[:12])}\n inv_label_map = {i: label for i, label in enumerate(string.ascii_uppercase[:12])}\n # print(label_map)\n correct_label = label_map.get(fi)\n if not correct_label: return {\"label\":\"failed row w/o answer\",\"gold\":\"\"}\n\n random.shuffle(doc[\"choices\"])\n # print(f\"answer{list('ABCD')[fi]}\",doc[f\"answer{list('ABCD')[fi]}\"])\n gold = fi\n shuffled_label = doc[\"choices\"].index(doc[f\"answer{gold}\"])\n doc[\"label\"] = inv_label_map[shuffled_label]\n doc[\"gold\"] = inv_label_map[shuffled_label]\n # print(doc)\n\n\n return doc\n ds = dataset.map(_helper,with_indices=True)\n return ds.filter(lambda x: len(x['gold'])==1)\n",
37
- "doc_to_text": "{{question}}\nA. {{choices[0]}}\nB. {{choices[1]}}\nC. {{choices[2]}}\nD. {{choices[3]}}\nE. {{choices[4]}}\nF. {{choices[5]}}\nG. {{choices[6]}}\nH. {{choices[7]}}\nK. {{choices[8]}}\nI. {{choices[9]}}\nJ. {{choices[10]}}\nL. {{choices[11]}}\n袨褌胁械褌:",
38
- "doc_to_target": "label",
39
- "doc_to_choice": [
40
- "A",
41
- "B",
42
- "C",
43
- "D",
44
- "E",
45
- "F",
46
- "G",
47
- "H",
48
- "I",
49
- "J",
50
- "K",
51
- "L"
52
- ],
53
- "description": "",
54
- "target_delimiter": " ",
55
- "fewshot_delimiter": "\n\n",
56
- "num_fewshot": 0,
57
- "metric_list": [
58
- {
59
- "metric": "acc"
60
- }
61
- ],
62
- "output_type": "multiple_choice",
63
- "repeats": 1,
64
- "should_decontaminate": false
65
- },
66
- "lawmc": {
67
- "task": "lawmc",
68
- "dataset_path": "Vikhrmodels/law_mc",
69
- "training_split": "train",
70
- "validation_split": "train",
71
- "process_docs": "def process_docs(dataset: Dataset):\n def _helper(doc,index):\n field = doc['correct_answer']\n fi = None\n if field == 'answerA' or field in ['A','袗']:\n fi = \"A\"\n if field == 'answerB' or field in ['B','袘']:\n fi = \"B\"\n if field == 'answerC' or field in ['C','小']:\n fi = \"C\"\n if field == 'answerD' or field in ['D','袛']:\n fi = \"D\"\n if fi:\n doc[\"choices\"] = [doc[f\"answer{s}\"] for s in list('ABCD')]\n\n else:\n for idx,(key,val) in enumerate(list(doc.items())[1:-1]):\n if field == val:\n fi = {0:\"A\",1:\"B\",2:\"C\",3:\"D\"}.get(idx)\n\n\n doc[\"choices\"] = [doc[f\"answer{s}\"] for s in list('ABCD')]\n if index == 0:\n next_doc1 = dataset[index + 1]\n next_doc2 = dataset[index + 2] if index + 2 < len(dataset) else None\n doc[\"choices\"].extend([next_doc1[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([next_doc2[f\"answer{s}\"] for s in list('ABCD')])\n elif index == len(dataset) - 1:\n prev_doc1 = dataset[index - 1]\n prev_doc2 = dataset[index - 2]\n doc[\"choices\"].extend([prev_doc1[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([prev_doc2[f\"answer{s}\"] for s in list('ABCD')])\n else:\n prev_doc = dataset[index - 1]\n next_doc = dataset[index + 1]\n doc[\"choices\"].extend([prev_doc[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([next_doc[f\"answer{s}\"] for s in list('ABCD')])\n\n label_map = {label: i for i, label in enumerate(string.ascii_uppercase[:12])}\n inv_label_map = {i: label for i, label in enumerate(string.ascii_uppercase[:12])}\n # print(label_map)\n correct_label = label_map.get(fi)\n if not correct_label: return {\"label\":\"failed row w/o answer\",\"gold\":\"\"}\n\n random.shuffle(doc[\"choices\"])\n # print(f\"answer{list('ABCD')[fi]}\",doc[f\"answer{list('ABCD')[fi]}\"])\n gold = fi\n shuffled_label = doc[\"choices\"].index(doc[f\"answer{gold}\"])\n doc[\"label\"] = inv_label_map[shuffled_label]\n doc[\"gold\"] = inv_label_map[shuffled_label]\n # print(doc)\n\n\n return doc\n ds = dataset.map(_helper,with_indices=True)\n return ds.filter(lambda x: len(x['gold'])==1)\n",
72
- "doc_to_text": "{{question}}\nA. {{choices[0]}}\nB. {{choices[1]}}\nC. {{choices[2]}}\nD. {{choices[3]}}\nE. {{choices[4]}}\nF. {{choices[5]}}\nG. {{choices[6]}}\nH. {{choices[7]}}\nK. {{choices[8]}}\nI. {{choices[9]}}\nJ. {{choices[10]}}\nL. {{choices[11]}}\n袨褌胁械褌:",
73
- "doc_to_target": "label",
74
- "doc_to_choice": [
75
- "A",
76
- "B",
77
- "C",
78
- "D",
79
- "E",
80
- "F",
81
- "G",
82
- "H",
83
- "I",
84
- "J",
85
- "K",
86
- "L"
87
- ],
88
- "description": "",
89
- "target_delimiter": " ",
90
- "fewshot_delimiter": "\n\n",
91
- "num_fewshot": 0,
92
- "metric_list": [
93
- {
94
- "metric": "acc"
95
- }
96
- ],
97
- "output_type": "multiple_choice",
98
- "repeats": 1,
99
- "should_decontaminate": false
100
- },
101
- "moviemc": {
102
- "task": "moviemc",
103
- "dataset_path": "Vikhrmodels/movie_mc",
104
- "training_split": "train",
105
- "validation_split": "train",
106
- "process_docs": "def process_docs(dataset: Dataset):\n def _helper(doc,index):\n field = doc['correct_answer']\n fi = None\n if field == 'answerA' or field in ['A','袗']:\n fi = \"A\"\n if field == 'answerB' or field in ['B','袘']:\n fi = \"B\"\n if field == 'answerC' or field in ['C','小']:\n fi = \"C\"\n if field == 'answerD' or field in ['D','袛']:\n fi = \"D\"\n if fi:\n doc[\"choices\"] = [doc[f\"answer{s}\"] for s in list('ABCD')]\n\n else:\n for idx,(key,val) in enumerate(list(doc.items())[1:-1]):\n if field == val:\n fi = {0:\"A\",1:\"B\",2:\"C\",3:\"D\"}.get(idx)\n\n\n doc[\"choices\"] = [doc[f\"answer{s}\"] for s in list('ABCD')]\n if index == 0:\n next_doc1 = dataset[index + 1]\n next_doc2 = dataset[index + 2] if index + 2 < len(dataset) else None\n doc[\"choices\"].extend([next_doc1[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([next_doc2[f\"answer{s}\"] for s in list('ABCD')])\n elif index == len(dataset) - 1:\n prev_doc1 = dataset[index - 1]\n prev_doc2 = dataset[index - 2]\n doc[\"choices\"].extend([prev_doc1[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([prev_doc2[f\"answer{s}\"] for s in list('ABCD')])\n else:\n prev_doc = dataset[index - 1]\n next_doc = dataset[index + 1]\n doc[\"choices\"].extend([prev_doc[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([next_doc[f\"answer{s}\"] for s in list('ABCD')])\n\n label_map = {label: i for i, label in enumerate(string.ascii_uppercase[:12])}\n inv_label_map = {i: label for i, label in enumerate(string.ascii_uppercase[:12])}\n # print(label_map)\n correct_label = label_map.get(fi)\n if not correct_label: return {\"label\":\"failed row w/o answer\",\"gold\":\"\"}\n\n random.shuffle(doc[\"choices\"])\n # print(f\"answer{list('ABCD')[fi]}\",doc[f\"answer{list('ABCD')[fi]}\"])\n gold = fi\n shuffled_label = doc[\"choices\"].index(doc[f\"answer{gold}\"])\n doc[\"label\"] = inv_label_map[shuffled_label]\n doc[\"gold\"] = inv_label_map[shuffled_label]\n # print(doc)\n\n\n return doc\n ds = dataset.map(_helper,with_indices=True)\n return ds.filter(lambda x: len(x['gold'])==1)\n",
107
- "doc_to_text": "{{question}}\nA. {{choices[0]}}\nB. {{choices[1]}}\nC. {{choices[2]}}\nD. {{choices[3]}}\nE. {{choices[4]}}\nF. {{choices[5]}}\nG. {{choices[6]}}\nH. {{choices[7]}}\nK. {{choices[8]}}\nI. {{choices[9]}}\nJ. {{choices[10]}}\nL. {{choices[11]}}\n袨褌胁械褌:",
108
- "doc_to_target": "label",
109
- "doc_to_choice": [
110
- "A",
111
- "B",
112
- "C",
113
- "D",
114
- "E",
115
- "F",
116
- "G",
117
- "H",
118
- "I",
119
- "J",
120
- "K",
121
- "L"
122
- ],
123
- "description": "",
124
- "target_delimiter": " ",
125
- "fewshot_delimiter": "\n\n",
126
- "num_fewshot": 0,
127
- "metric_list": [
128
- {
129
- "metric": "acc"
130
- }
131
- ],
132
- "output_type": "multiple_choice",
133
- "repeats": 1,
134
- "should_decontaminate": false
135
- },
136
- "musicmc": {
137
- "task": "musicmc",
138
- "dataset_path": "Vikhrmodels/music_mc",
139
- "training_split": "train",
140
- "validation_split": "train",
141
- "process_docs": "def process_docs(dataset: Dataset):\n def _helper(doc,index):\n field = doc['correct_answer']\n fi = None\n if field == 'answerA' or field in ['A','袗']:\n fi = \"A\"\n if field == 'answerB' or field in ['B','袘']:\n fi = \"B\"\n if field == 'answerC' or field in ['C','小']:\n fi = \"C\"\n if field == 'answerD' or field in ['D','袛']:\n fi = \"D\"\n if fi:\n doc[\"choices\"] = [doc[f\"answer{s}\"] for s in list('ABCD')]\n\n else:\n for idx,(key,val) in enumerate(list(doc.items())[1:-1]):\n if field == val:\n fi = {0:\"A\",1:\"B\",2:\"C\",3:\"D\"}.get(idx)\n\n\n doc[\"choices\"] = [doc[f\"answer{s}\"] for s in list('ABCD')]\n if index == 0:\n next_doc1 = dataset[index + 1]\n next_doc2 = dataset[index + 2] if index + 2 < len(dataset) else None\n doc[\"choices\"].extend([next_doc1[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([next_doc2[f\"answer{s}\"] for s in list('ABCD')])\n elif index == len(dataset) - 1:\n prev_doc1 = dataset[index - 1]\n prev_doc2 = dataset[index - 2]\n doc[\"choices\"].extend([prev_doc1[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([prev_doc2[f\"answer{s}\"] for s in list('ABCD')])\n else:\n prev_doc = dataset[index - 1]\n next_doc = dataset[index + 1]\n doc[\"choices\"].extend([prev_doc[f\"answer{s}\"] for s in list('ABCD')])\n doc[\"choices\"].extend([next_doc[f\"answer{s}\"] for s in list('ABCD')])\n\n label_map = {label: i for i, label in enumerate(string.ascii_uppercase[:12])}\n inv_label_map = {i: label for i, label in enumerate(string.ascii_uppercase[:12])}\n # print(label_map)\n correct_label = label_map.get(fi)\n if not correct_label: return {\"label\":\"failed row w/o answer\",\"gold\":\"\"}\n\n random.shuffle(doc[\"choices\"])\n # print(f\"answer{list('ABCD')[fi]}\",doc[f\"answer{list('ABCD')[fi]}\"])\n gold = fi\n shuffled_label = doc[\"choices\"].index(doc[f\"answer{gold}\"])\n doc[\"label\"] = inv_label_map[shuffled_label]\n doc[\"gold\"] = inv_label_map[shuffled_label]\n # print(doc)\n\n\n return doc\n ds = dataset.map(_helper,with_indices=True)\n return ds.filter(lambda x: len(x['gold'])==1)\n",
142
- "doc_to_text": "{{question}}\nA. {{choices[0]}}\nB. {{choices[1]}}\nC. {{choices[2]}}\nD. {{choices[3]}}\nE. {{choices[4]}}\nF. {{choices[5]}}\nG. {{choices[6]}}\nH. {{choices[7]}}\nK. {{choices[8]}}\nI. {{choices[9]}}\nJ. {{choices[10]}}\nL. {{choices[11]}}\n袨褌胁械褌:",
143
- "doc_to_target": "label",
144
- "doc_to_choice": [
145
- "A",
146
- "B",
147
- "C",
148
- "D",
149
- "E",
150
- "F",
151
- "G",
152
- "H",
153
- "I",
154
- "J",
155
- "K",
156
- "L"
157
- ],
158
- "description": "",
159
- "target_delimiter": " ",
160
- "fewshot_delimiter": "\n\n",
161
- "num_fewshot": 0,
162
- "metric_list": [
163
- {
164
- "metric": "acc"
165
- }
166
- ],
167
- "output_type": "multiple_choice",
168
- "repeats": 1,
169
- "should_decontaminate": false
170
- }
171
- },
172
- "versions": {
173
- "bookmc": "Yaml",
174
- "lawmc": "Yaml",
175
- "moviemc": "Yaml",
176
- "musicmc": "Yaml"
177
- },
178
- "n-shot": {
179
- "bookmc": 0,
180
- "lawmc": 0,
181
- "moviemc": 0,
182
- "musicmc": 0
183
- },
184
- "n-samples": {
185
- "musicmc": {
186
- "original": 470,
187
- "effective": 470
188
- },
189
- "moviemc": {
190
- "original": 432,
191
- "effective": 432
192
- },
193
- "lawmc": {
194
- "original": 971,
195
- "effective": 971
196
- },
197
- "bookmc": {
198
- "original": 482,
199
- "effective": 482
200
- }
201
- },
202
- "config": {
203
- "model": "hf",
204
- "model_args": "pretrained=Vikhrmodels/it-5.3-fp16-32k,dtype=float16",
205
- "model_num_parameters": 7627550720,
206
- "model_dtype": "torch.float16",
207
- "model_revision": "main",
208
- "model_sha": "9efc89dcaf89fd094a909a3d078890a5ab74542b",
209
- "batch_size": "10",
210
- "batch_sizes": [],
211
- "device": "3",
212
- "use_cache": null,
213
- "limit": null,
214
- "bootstrap_iters": 100000,
215
- "gen_kwargs": null,
216
- "random_seed": 0,
217
- "numpy_seed": 1234,
218
- "torch_seed": 1234,
219
- "fewshot_seed": 1234
220
- },
221
- "git_hash": null,
222
- "date": 1717619450.4005609,
223
- "pretty_env_info": "PyTorch version: 2.3.0+cu121\nIs debug build: False\nCUDA used to build PyTorch: 12.1\nROCM used to build PyTorch: N/A\n\nOS: Ubuntu 20.04.6 LTS (x86_64)\nGCC version: (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0\nClang version: Could not collect\nCMake version: version 3.27.0\nLibc version: glibc-2.31\n\nPython version: 3.8.10 (default, May 26 2023, 14:05:08) [GCC 9.4.0] (64-bit runtime)\nPython platform: Linux-5.4.0-150-generic-x86_64-with-glibc2.29\nIs CUDA available: True\nCUDA runtime version: 10.1.243\nCUDA_MODULE_LOADING set to: LAZY\nGPU models and configuration: \nGPU 0: Tesla V100-SXM2-32GB\nGPU 1: Tesla V100-SXM2-32GB\nGPU 2: Tesla V100-SXM2-32GB\nGPU 3: Tesla V100-SXM2-32GB\n\nNvidia driver version: 525.85.12\ncuDNN version: Could not collect\nHIP runtime version: N/A\nMIOpen runtime version: N/A\nIs XNNPACK available: True\n\nCPU:\nArchitecture: x86_64\nCPU op-mode(s): 32-bit, 64-bit\nByte Order: Little Endian\nAddress sizes: 46 bits physical, 48 bits virtual\nCPU(s): 48\nOn-line CPU(s) list: 0-47\nThread(s) per core: 2\nCore(s) per socket: 12\nSocket(s): 2\nNUMA node(s): 2\nVendor ID: GenuineIntel\nCPU family: 6\nModel: 63\nModel name: Intel(R) Xeon(R) CPU E5-2680 v3 @ 2.50GHz\nStepping: 2\nCPU MHz: 1200.181\nCPU max MHz: 3300.0000\nCPU min MHz: 1200.0000\nBogoMIPS: 5000.01\nVirtualization: VT-x\nL1d cache: 768 KiB\nL1i cache: 768 KiB\nL2 cache: 6 MiB\nL3 cache: 60 MiB\nNUMA node0 CPU(s): 0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42,44,46\nNUMA node1 CPU(s): 1,3,5,7,9,11,13,15,17,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47\nVulnerability Itlb multihit: KVM: Mitigation: Split huge pages\nVulnerability L1tf: Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable\nVulnerability Mds: Mitigation; Clear CPU buffers; SMT vulnerable\nVulnerability Meltdown: Mitigation; PTI\nVulnerability Mmio stale data: Mitigation; Clear CPU buffers; SMT vulnerable\nVulnerability Retbleed: Not affected\nVulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl and seccomp\nVulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnerability Spectre v2: Mitigation; Retpolines, IBPB conditional, IBRS_FW, STIBP conditional, RSB filling, PBRSB-eIBRS Not affected\nVulnerability Srbds: Not affected\nVulnerability Tsx async abort: Not affected\nFlags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d\n\nVersions of relevant libraries:\n[pip3] efficientnet-pytorch==0.6.3\n[pip3] ema-pytorch==0.3.1\n[pip3] magvit2-pytorch==0.2.0\n[pip3] mypy-extensions==1.0.0\n[pip3] numpy==1.24.4\n[pip3] onnx==1.15.0\n[pip3] open-clip-torch==2.20.0\n[pip3] pytorch-ignite==0.5.0.post2\n[pip3] pytorch-lightning==2.0.1\n[pip3] pytorch-metric-learning==2.1.2\n[pip3] pytorch-msssim==1.0.0\n[pip3] pytorch-ranger==0.1.1\n[pip3] pytorch-warmup==0.1.1\n[pip3] rotary-embedding-torch==0.5.2\n[pip3] segmentation-models-pytorch==0.1.3\n[pip3] torch==2.3.0\n[pip3] torch-optimizer==0.3.0\n[pip3] torchaudio==2.0.0\n[pip3] torchdata==0.6.0\n[pip3] torchmetrics==1.3.0.post0\n[pip3] torchsde==0.2.6\n[pip3] torchvision==0.17.2\n[pip3] triton==2.3.0\n[pip3] vector-quantize-pytorch==1.12.5\n[conda] Could not collect",
224
- "transformers_version": "4.41.1",
225
- "upper_git_hash": null,
226
- "task_hashes": {},
227
- "model_source": "hf",
228
- "model_name": "Vikhrmodels/it-5.3-fp16-32k",
229
- "model_name_sanitized": "Vikhrmodels__it-5.3-fp16-32k",
230
- "start_time": 8471655.240029689,
231
- "end_time": 8471809.526610821,
232
- "total_evaluation_time_seconds": "154.28658113256097"
233
- }