ScandEval 16.11.0__py3-none-any.whl → 16.13.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (67) hide show
  1. scandeval/__init__.py +0 -9
  2. scandeval/async_utils.py +46 -0
  3. scandeval/benchmark_config_factory.py +31 -2
  4. scandeval/benchmark_modules/fresh.py +2 -1
  5. scandeval/benchmark_modules/hf.py +76 -23
  6. scandeval/benchmark_modules/litellm.py +33 -15
  7. scandeval/benchmark_modules/vllm.py +97 -44
  8. scandeval/benchmarker.py +29 -33
  9. scandeval/cli.py +11 -0
  10. scandeval/constants.py +36 -2
  11. scandeval/custom_dataset_configs.py +152 -0
  12. scandeval/data_loading.py +87 -31
  13. scandeval/data_models.py +405 -224
  14. scandeval/dataset_configs/__init__.py +51 -25
  15. scandeval/dataset_configs/albanian.py +1 -1
  16. scandeval/dataset_configs/belarusian.py +47 -0
  17. scandeval/dataset_configs/bulgarian.py +1 -1
  18. scandeval/dataset_configs/catalan.py +1 -1
  19. scandeval/dataset_configs/croatian.py +1 -1
  20. scandeval/dataset_configs/danish.py +3 -2
  21. scandeval/dataset_configs/dutch.py +16 -5
  22. scandeval/dataset_configs/english.py +4 -3
  23. scandeval/dataset_configs/estonian.py +8 -7
  24. scandeval/dataset_configs/faroese.py +1 -1
  25. scandeval/dataset_configs/finnish.py +5 -4
  26. scandeval/dataset_configs/french.py +6 -5
  27. scandeval/dataset_configs/german.py +4 -3
  28. scandeval/dataset_configs/greek.py +1 -1
  29. scandeval/dataset_configs/hungarian.py +1 -1
  30. scandeval/dataset_configs/icelandic.py +4 -3
  31. scandeval/dataset_configs/italian.py +4 -3
  32. scandeval/dataset_configs/latvian.py +2 -2
  33. scandeval/dataset_configs/lithuanian.py +1 -1
  34. scandeval/dataset_configs/norwegian.py +6 -5
  35. scandeval/dataset_configs/polish.py +4 -3
  36. scandeval/dataset_configs/portuguese.py +5 -4
  37. scandeval/dataset_configs/romanian.py +2 -2
  38. scandeval/dataset_configs/serbian.py +1 -1
  39. scandeval/dataset_configs/slovene.py +1 -1
  40. scandeval/dataset_configs/spanish.py +4 -3
  41. scandeval/dataset_configs/swedish.py +4 -3
  42. scandeval/dataset_configs/ukrainian.py +1 -1
  43. scandeval/generation_utils.py +6 -6
  44. scandeval/metrics/__init__.py +1 -0
  45. scandeval/metrics/bias.py +237 -0
  46. scandeval/metrics/huggingface.py +2 -1
  47. scandeval/metrics/llm_as_a_judge.py +1 -1
  48. scandeval/metrics/pipeline.py +1 -1
  49. scandeval/model_cache.py +34 -4
  50. scandeval/prompt_templates/linguistic_acceptability.py +9 -0
  51. scandeval/prompt_templates/multiple_choice.py +9 -0
  52. scandeval/prompt_templates/named_entity_recognition.py +21 -0
  53. scandeval/prompt_templates/reading_comprehension.py +10 -0
  54. scandeval/prompt_templates/sentiment_classification.py +11 -0
  55. scandeval/string_utils.py +157 -0
  56. scandeval/task_group_utils/sequence_classification.py +2 -5
  57. scandeval/task_group_utils/token_classification.py +2 -4
  58. scandeval/tasks.py +22 -0
  59. scandeval/tokenisation_utils.py +12 -1
  60. scandeval/utils.py +13 -383
  61. scandeval-16.13.0.dist-info/METADATA +334 -0
  62. scandeval-16.13.0.dist-info/RECORD +94 -0
  63. scandeval-16.11.0.dist-info/METADATA +0 -649
  64. scandeval-16.11.0.dist-info/RECORD +0 -89
  65. {scandeval-16.11.0.dist-info → scandeval-16.13.0.dist-info}/WHEEL +0 -0
  66. {scandeval-16.11.0.dist-info → scandeval-16.13.0.dist-info}/entry_points.txt +0 -0
  67. {scandeval-16.11.0.dist-info → scandeval-16.13.0.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,334 @@
1
+ Metadata-Version: 2.4
2
+ Name: ScandEval
3
+ Version: 16.13.0
4
+ Summary: The robust European language model benchmark.
5
+ Project-URL: Repository, https://github.com/EuroEval/EuroEval
6
+ Project-URL: Issues, https://github.com/EuroEval/EuroEval/issues
7
+ Author-email: Dan Saattrup Smart <dan.smart@alexandra.dk>
8
+ Maintainer-email: Dan Saattrup Smart <dan.smart@alexandra.dk>
9
+ License: MIT License
10
+
11
+ Copyright (c) 2022-2026 Dan Saattrup Smart
12
+
13
+ Permission is hereby granted, free of charge, to any person obtaining a copy
14
+ of this software and associated documentation files (the "Software"), to deal
15
+ in the Software without restriction, including without limitation the rights
16
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17
+ copies of the Software, and to permit persons to whom the Software is
18
+ furnished to do so, subject to the following conditions:
19
+
20
+ The above copyright notice and this permission notice shall be included in all
21
+ copies or substantial portions of the Software.
22
+
23
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
28
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
29
+ SOFTWARE.
30
+ License-File: LICENSE
31
+ Requires-Python: <4.0,>=3.12
32
+ Requires-Dist: accelerate>=1.9.0
33
+ Requires-Dist: bert-score>=0.3.13
34
+ Requires-Dist: click>=8.1.3
35
+ Requires-Dist: cloudpickle>=3.1.1
36
+ Requires-Dist: datasets>=3.5.0
37
+ Requires-Dist: demjson3>=3.0.6
38
+ Requires-Dist: evaluate>=0.4.1
39
+ Requires-Dist: huggingface-hub>=0.30.1
40
+ Requires-Dist: levenshtein>=0.24.0
41
+ Requires-Dist: litellm>=1.75.6
42
+ Requires-Dist: mistral-common[soundfile]
43
+ Requires-Dist: more-itertools>=10.5.0
44
+ Requires-Dist: numpy>=2.0.0
45
+ Requires-Dist: ollama>=0.5.1
46
+ Requires-Dist: pandas>=2.2.0
47
+ Requires-Dist: peft>=0.15.0
48
+ Requires-Dist: protobuf>=2.0.0
49
+ Requires-Dist: pydantic>=2.6.0
50
+ Requires-Dist: pyinfer>=0.0.3
51
+ Requires-Dist: python-dotenv>=1.0.1
52
+ Requires-Dist: rouge-score>=0.1.2
53
+ Requires-Dist: sacrebleu>=2.5.1
54
+ Requires-Dist: sacremoses>=0.1.1
55
+ Requires-Dist: scikit-learn==1.6.1
56
+ Requires-Dist: sentencepiece>=0.1.96
57
+ Requires-Dist: seqeval>=1.2.2
58
+ Requires-Dist: setuptools>=75.8.2
59
+ Requires-Dist: tenacity>=9.0.0
60
+ Requires-Dist: termcolor>=2.0.0
61
+ Requires-Dist: torch>=2.6.0
62
+ Requires-Dist: transformers[mistral-common]<5.0.0,>=4.56.0
63
+ Provides-Extra: all
64
+ Requires-Dist: bitsandbytes>=0.43.1; (platform_system == 'Linux') and extra == 'all'
65
+ Requires-Dist: fbgemm-gpu>=1.0.0; (platform_system == 'Linux') and extra == 'all'
66
+ Requires-Dist: ray>=2.53.0; (platform_system == 'Linux') and extra == 'all'
67
+ Requires-Dist: timm>=1.0.19; extra == 'all'
68
+ Requires-Dist: vllm-metal>=0.1.0; (platform_system == 'Darwin') and extra == 'all'
69
+ Requires-Dist: vllm==0.11.0; (platform_system == 'Darwin') and extra == 'all'
70
+ Requires-Dist: vllm[flashinfer]>=0.14.1; (platform_system == 'Linux') and extra == 'all'
71
+ Provides-Extra: generative
72
+ Requires-Dist: bitsandbytes>=0.43.1; (platform_system == 'Linux') and extra == 'generative'
73
+ Requires-Dist: fbgemm-gpu>=1.0.0; (platform_system == 'Linux') and extra == 'generative'
74
+ Requires-Dist: ray>=2.53.0; (platform_system == 'Linux') and extra == 'generative'
75
+ Requires-Dist: timm>=1.0.19; extra == 'generative'
76
+ Requires-Dist: vllm-metal>=0.1.0; (platform_system == 'Darwin') and extra == 'generative'
77
+ Requires-Dist: vllm==0.11.0; (platform_system == 'Darwin') and extra == 'generative'
78
+ Requires-Dist: vllm[flashinfer]>=0.14.1; (platform_system == 'Linux') and extra == 'generative'
79
+ Description-Content-Type: text/markdown
80
+
81
+ <!-- This disables the requirement that the first line is a top-level heading -->
82
+ <!-- markdownlint-configure-file { "MD041": false } -->
83
+
84
+ <div align='center'>
85
+ <img
86
+ src="https://raw.githubusercontent.com/EuroEval/EuroEval/main/gfx/euroeval.png"
87
+ height="500"
88
+ width="372"
89
+ >
90
+ </div>
91
+
92
+ ### The robust European language model benchmark
93
+
94
+ (formerly known as ScandEval)
95
+
96
+ ______________________________________________________________________
97
+ [![Documentation](https://img.shields.io/badge/docs-passing-green)](https://euroeval.com)
98
+ [![PyPI Status](https://badge.fury.io/py/euroeval.svg)](https://pypi.org/project/euroeval/)
99
+ [![First paper](https://img.shields.io/badge/arXiv-2304.00906-b31b1b.svg)](https://arxiv.org/abs/2304.00906)
100
+ [![Second paper](https://img.shields.io/badge/arXiv-2406.13469-b31b1b.svg)](https://arxiv.org/abs/2406.13469)
101
+ [![License](https://img.shields.io/github/license/EuroEval/EuroEval)](https://github.com/EuroEval/EuroEval/blob/main/LICENSE)
102
+ [![LastCommit](https://img.shields.io/github/last-commit/EuroEval/EuroEval)](https://github.com/EuroEval/EuroEval/commits/main)
103
+ [![Code Coverage](https://img.shields.io/badge/Coverage-73%25-yellow.svg)](https://github.com/EuroEval/EuroEval/tree/main/tests)
104
+ [![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.0-4baaaa.svg)](https://github.com/EuroEval/EuroEval/blob/main/CODE_OF_CONDUCT.md)
105
+
106
+ ## Maintainer
107
+
108
+ - Dan Saattrup Smart ([@saattrupdan](https://github.com/saattrupdan), <dan.smart@alexandra.dk>)
109
+
110
+ ## Installation and usage
111
+
112
+ See the [documentation](https://euroeval.com/python-package/) for more information.
113
+
114
+ ## Reproducing the evaluation datasets
115
+
116
+ All datasets used in this project are generated using the scripts located in the
117
+ [src/scripts](src/scripts) folder. To reproduce a dataset, run the corresponding script
118
+ with the following command
119
+
120
+ ```bash
121
+ uv run src/scripts/<name-of-script>.py
122
+ ```
123
+
124
+ Replace <name-of-script> with the specific script you wish to execute, e.g.,
125
+
126
+ ```bash
127
+ uv run src/scripts/create_allocine.py
128
+ ```
129
+
130
+ ## Contributors :pray:
131
+
132
+ A huge thank you to all the contributors who have helped make this project a success!
133
+
134
+ <a href="https://github.com/peter-sk">
135
+ <img
136
+ src="https://avatars.githubusercontent.com/u/6168908"
137
+ width=50
138
+ alt="Contributor avatar for peter-sk"
139
+ />
140
+ </a>
141
+ <a href="https://github.com/AJDERS">
142
+ <img
143
+ src="https://avatars.githubusercontent.com/u/38854604"
144
+ width=50
145
+ alt="Contributor avatar for AJDERS"
146
+ />
147
+ </a>
148
+ <a href="https://github.com/oliverkinch">
149
+ <img
150
+ src="https://avatars.githubusercontent.com/u/71556498"
151
+ width=50
152
+ alt="Contributor avatar for oliverkinch"
153
+ />
154
+ </a>
155
+ <a href="https://github.com/versae">
156
+ <img
157
+ src="https://avatars.githubusercontent.com/u/173537"
158
+ width=50
159
+ alt="Contributor avatar for versae"
160
+ />
161
+ </a>
162
+ <a href="https://github.com/KennethEnevoldsen">
163
+ <img
164
+ src="https://avatars.githubusercontent.com/u/23721977"
165
+ width=50
166
+ alt="Contributor avatar for KennethEnevoldsen"
167
+ />
168
+ </a>
169
+ <a href="https://github.com/viggo-gascou">
170
+ <img
171
+ src="https://avatars.githubusercontent.com/u/94069687"
172
+ width=50
173
+ alt="Contributor avatar for viggo-gascou"
174
+ />
175
+ </a>
176
+ <a href="https://github.com/mathiasesn">
177
+ <img
178
+ src="https://avatars.githubusercontent.com/u/27091759"
179
+ width=50
180
+ alt="Contributor avatar for mathiasesn"
181
+ />
182
+ </a>
183
+ <a href="https://github.com/Alkarex">
184
+ <img
185
+ src="https://avatars.githubusercontent.com/u/1008324"
186
+ width=50
187
+ alt="Contributor avatar for Alkarex"
188
+ />
189
+ </a>
190
+ <a href="https://github.com/marksverdhei">
191
+ <img
192
+ src="https://avatars.githubusercontent.com/u/46672778"
193
+ width=50
194
+ alt="Contributor avatar for marksverdhei"
195
+ />
196
+ </a>
197
+ <a href="https://github.com/Mikeriess">
198
+ <img
199
+ src="https://avatars.githubusercontent.com/u/19728563"
200
+ width=50
201
+ alt="Contributor avatar for Mikeriess"
202
+ />
203
+ </a>
204
+ <a href="https://github.com/ThomasKluiters">
205
+ <img
206
+ src="https://avatars.githubusercontent.com/u/8137941"
207
+ width=50
208
+ alt="Contributor avatar for ThomasKluiters"
209
+ />
210
+ </a>
211
+ <a href="https://github.com/BramVanroy">
212
+ <img
213
+ src="https://avatars.githubusercontent.com/u/2779410"
214
+ width=50
215
+ alt="Contributor avatar for BramVanroy"
216
+ />
217
+ </a>
218
+ <a href="https://github.com/peregilk">
219
+ <img
220
+ src="https://avatars.githubusercontent.com/u/9079808"
221
+ width=50
222
+ alt="Contributor avatar for peregilk"
223
+ />
224
+ </a>
225
+ <a href="https://github.com/Rijgersberg">
226
+ <img
227
+ src="https://avatars.githubusercontent.com/u/8604946"
228
+ width=50
229
+ alt="Contributor avatar for Rijgersberg"
230
+ />
231
+ </a>
232
+ <a href="https://github.com/duarteocarmo">
233
+ <img
234
+ src="https://avatars.githubusercontent.com/u/26342344"
235
+ width=50
236
+ alt="Contributor avatar for duarteocarmo"
237
+ />
238
+ </a>
239
+ <a href="https://github.com/slowwavesleep">
240
+ <img
241
+ src="https://avatars.githubusercontent.com/u/44175589"
242
+ width=50
243
+ alt="Contributor avatar for slowwavesleep"
244
+ />
245
+ </a>
246
+ <a href="https://github.com/mrkowalski">
247
+ <img
248
+ src="https://avatars.githubusercontent.com/u/6357044"
249
+ width=50
250
+ alt="Contributor avatar for mrkowalski"
251
+ />
252
+ </a>
253
+ <a href="https://github.com/simonevanbruggen">
254
+ <img
255
+ src="https://avatars.githubusercontent.com/u/24842609"
256
+ width=50
257
+ alt="Contributor avatar for simonevanbruggen"
258
+ />
259
+ </a>
260
+ <a href="https://github.com/tvosch">
261
+ <img
262
+ src="https://avatars.githubusercontent.com/u/110661769"
263
+ width=50
264
+ alt="Contributor avatar for tvosch"
265
+ />
266
+ </a>
267
+ <a href="https://github.com/Touzen">
268
+ <img
269
+ src="https://avatars.githubusercontent.com/u/1416265"
270
+ width=50
271
+ alt="Contributor avatar for Touzen"
272
+ />
273
+ </a>
274
+ <a href="https://github.com/caldaibis">
275
+ <img
276
+ src="https://avatars.githubusercontent.com/u/16032437"
277
+ width=50
278
+ alt="Contributor avatar for caldaibis"
279
+ />
280
+ </a>
281
+ <a href="https://github.com/SwekeR-463">
282
+ <img
283
+ src="https://avatars.githubusercontent.com/u/114919896?v=4"
284
+ width=50
285
+ alt="Contributor avatar for SwekeR-463"
286
+ />
287
+ </a>
288
+
289
+ ### Contribute to EuroEval
290
+
291
+ We welcome contributions to EuroEval! Whether you're fixing bugs, adding features, or
292
+ contributing new datasets, your help makes this project better for everyone.
293
+
294
+ - **General contributions**: Check out our [contribution guidelines](CONTRIBUTING.md)
295
+ for information on how to get started.
296
+ - **Adding datasets**: If you're interested in adding a new dataset to EuroEval, we have
297
+ a [dedicated guide](NEW_DATASET_GUIDE.md) with step-by-step instructions.
298
+
299
+ ### Special thanks
300
+
301
+ - Thanks to [Google](https://google.com/) for sponsoring Gemini credits as part of their
302
+ [Google Cloud for Researchers Program](https://cloud.google.com/edu/researchers).
303
+ - Thanks [@Mikeriess](https://github.com/Mikeriess) for evaluating many of the larger
304
+ models on the leaderboards.
305
+ - Thanks to [OpenAI](https://openai.com/) for sponsoring OpenAI credits as part of their
306
+ [Researcher Access Program](https://openai.com/form/researcher-access-program/).
307
+ - Thanks to [UWV](https://www.uwv.nl/) and [KU
308
+ Leuven](https://www.arts.kuleuven.be/ling/ccl) for sponsoring the Azure OpenAI
309
+ credits used to evaluate GPT-4-turbo in Dutch.
310
+ - Thanks to [Miðeind](https://mideind.is/en) for sponsoring the OpenAI
311
+ credits used to evaluate GPT-4-turbo in Icelandic and Faroese.
312
+ - Thanks to [CHC](https://chc.au.dk/) for sponsoring the OpenAI credits used to
313
+ evaluate GPT-4-turbo in German.
314
+
315
+ ## Citing EuroEval
316
+
317
+ If you want to cite the framework then feel free to use this:
318
+
319
+ ```bibtex
320
+ @article{smart2024encoder,
321
+ title={Encoder vs Decoder: Comparative Analysis of Encoder and Decoder Language Models on Multilingual NLU Tasks},
322
+ author={Smart, Dan Saattrup and Enevoldsen, Kenneth and Schneider-Kamp, Peter},
323
+ journal={arXiv preprint arXiv:2406.13469},
324
+ year={2024}
325
+ }
326
+ @inproceedings{smart2023scandeval,
327
+ author = {Smart, Dan Saattrup},
328
+ booktitle = {Proceedings of the 24th Nordic Conference on Computational Linguistics (NoDaLiDa)},
329
+ month = may,
330
+ pages = {185--201},
331
+ title = {{ScandEval: A Benchmark for Scandinavian Natural Language Processing}},
332
+ year = {2023}
333
+ }
334
+ ```
@@ -0,0 +1,94 @@
1
+ scandeval/__init__.py,sha256=wHhEEQ8wLNLAN9ULdAkWZpGSo08IpTx_w_gaya0FnVQ,3896
2
+ scandeval/async_utils.py,sha256=tVrpSZVpEohIWCwpwroF9IZO2eeUIYSNU_ixvqTgUZ8,1128
3
+ scandeval/benchmark_config_factory.py,sha256=62DY4M0NILR-36Tu8xt2Qrkzz7sJ0iAOIw4cVT5zS_Y,9758
4
+ scandeval/benchmarker.py,sha256=Qa-87CExA7yGa8RENKWxkfBUWogmPrDsL61nhxQGiL0,54077
5
+ scandeval/caching_utils.py,sha256=lLUbkpDdJZy4xodIpwIz5d-WNKGuszbr_d9dyiJ5kZc,2591
6
+ scandeval/callbacks.py,sha256=l8f6Zr8EoHfVFsI1ZnMUK0Y8uZB00Nvaz_I6XDn6avE,2515
7
+ scandeval/cli.py,sha256=9tW6gfpIEnApSlt5KIp28gZ2sG7TKbXzLjusKrnRiQo,9783
8
+ scandeval/constants.py,sha256=IJg0VpHpsCNSvkgNDwc9aHJtwEQk7TtYygk7gj0c27I,4763
9
+ scandeval/custom_dataset_configs.py,sha256=SpRctMzD1hNNGJp6JdAnblIqkaR3exOd6gQ-eYmQ32s,5340
10
+ scandeval/data_loading.py,sha256=XIYfNYLJL8FfTnoizLa7LskVYpnkXd-a-0rDxU0JSQc,8923
11
+ scandeval/data_models.py,sha256=DIHjKi7prg2EaUZV7UlcJGg_CNQls7kACNbTLbH0o-8,38111
12
+ scandeval/enums.py,sha256=SeFek-Lre2Q5sxbP5svqjDZFZR2vlJhg9dkRH4JvU1g,3436
13
+ scandeval/exceptions.py,sha256=4-N2OIo5PJ2aciLjagNAVhdHPxpq2QxywbBqJ8lkKj0,5780
14
+ scandeval/finetuning.py,sha256=dTjchPHLFRD65ZrEmtj5TfMTPZ6PODn77t372fgTNwE,11983
15
+ scandeval/generation.py,sha256=ccE-S0jxkM99XziIdeaBbk8yRGv4YBkzZkoabhFCSKA,13382
16
+ scandeval/generation_utils.py,sha256=todDO4UfFw-pNWjv795HLLlz4UcX3RhRPcEep76xxNk,20124
17
+ scandeval/languages.py,sha256=gUSosFbvf1eEQHjVsKhXdJ4jiGXC-9lMkOL8AsBG33Q,37295
18
+ scandeval/logging_utils.py,sha256=Qnni11ngHrjCf_fgkk6lp6gs-tGSgUS3d5zRR83y6ec,9507
19
+ scandeval/model_cache.py,sha256=K7gmYPNAmvi-BcQbUWg8DUiqQBwYbBqU-euqu7myaf0,11138
20
+ scandeval/model_config.py,sha256=fxHfgpw-9vj3hwke28DguVGvG9TU06nkTXT0V6KAMpQ,2761
21
+ scandeval/model_loading.py,sha256=DsX7et18Epcv8kHATZgwPJnwH17GHmh3JCzrSoI3GAE,2377
22
+ scandeval/scores.py,sha256=9a1XtppFbp8GJFc9JdThGxqBY0YUE7-92oyrlxScjNk,3281
23
+ scandeval/speed_benchmark.py,sha256=VUOvauc9tuAegThNT2g1a-Z1l7DEmKq57dHI4t16o5A,4068
24
+ scandeval/string_utils.py,sha256=h9IFUkbmPWYQ-1VwdrJT82a32GVFr-ihwOcM3N8nyg0,5034
25
+ scandeval/tasks.py,sha256=FQvnl28iudjIA2V_G3gHpSsyKaSs7r1i-T5c2pLAuF4,6656
26
+ scandeval/tokenisation_utils.py,sha256=K9ovIi5WNqLrFKkafl16R3K-2PallGwV_zeIFw_AM_k,21553
27
+ scandeval/types.py,sha256=CHQjLzqKYDXPCyZas7rKg6wD1pNiYuaOFMWimrj5H64,4374
28
+ scandeval/utils.py,sha256=jXHAOh_iON_7Oed-dAAiT6wG-o3b7PveOka1HoschQs,7545
29
+ scandeval/benchmark_modules/__init__.py,sha256=TNO-sNDwlXE-LMFXfwwqjQqUy55gywSmwRBcoPUFuaU,236
30
+ scandeval/benchmark_modules/base.py,sha256=5YAsCMILKTRXFx_ylGQ7iS5AFKN25iFdkBjj8KzzElw,11445
31
+ scandeval/benchmark_modules/fresh.py,sha256=8jmx3zMMp6IxDp44T3P7FJJGPMbj3vSyIfukUSUNS4k,10759
32
+ scandeval/benchmark_modules/hf.py,sha256=tSnM6aJzB0K0kro7il-ijyD959da47E2gs9dM3BDGoM,49948
33
+ scandeval/benchmark_modules/litellm.py,sha256=owdA_qfTcbhzVJDC6VCM1ipEYoOerLynUReMbJxZu-s,76229
34
+ scandeval/benchmark_modules/vllm.py,sha256=qwhDqbX7mXPJs34FVybi79Q0ATqVHDMMgdF3hPnXqyE,61801
35
+ scandeval/dataset_configs/__init__.py,sha256=O8STCjVRlBfPi-7wxfZDQ1dX2mEXbRSmnJNlmik0JRs,4416
36
+ scandeval/dataset_configs/albanian.py,sha256=KE82ZtmkrOyf0U7Tf4Mlw-q8ZI5tN4qrZvgs9uNFg7Q,1472
37
+ scandeval/dataset_configs/belarusian.py,sha256=AwEzNpi8x8_BZ1LaMSK_nYKCfKzJ7jvj_LJ1tlv6UAI,1048
38
+ scandeval/dataset_configs/bosnian.py,sha256=golIWqwW1pFwSkuBM1v0yhHDblB2FoJgK24aO7kKm7M,877
39
+ scandeval/dataset_configs/bulgarian.py,sha256=yuuXwi0GvYSNjgYbfa1RRjhQu-0DL0Rf7ayDXdFfrRs,1283
40
+ scandeval/dataset_configs/catalan.py,sha256=Tcgi0ucpumkZXROMgdwE0Mb2CySiY3vOU0aQKXeYNA8,1426
41
+ scandeval/dataset_configs/croatian.py,sha256=rcUcfb2kcY1Ojhg86cCpcMYxR9MNLdXL-vRbG2nQLTM,1259
42
+ scandeval/dataset_configs/czech.py,sha256=ghv2yNw839G-utll8PQRSjyKYbM5gfoQhFKy664GTCI,1562
43
+ scandeval/dataset_configs/danish.py,sha256=mcRZm3crLqFzkbNmQkMdNUbjiUooJS01p0qJWqmbgIo,3313
44
+ scandeval/dataset_configs/dutch.py,sha256=Z1el5JHNBZw3SX9orqLak1fGvYV-ogOA7CN08Ex0y24,3758
45
+ scandeval/dataset_configs/english.py,sha256=18hhSXkYlfIGDx3KGD1Q576pRRFK2jwIGNdbCvCnaR0,2836
46
+ scandeval/dataset_configs/estonian.py,sha256=C0bRCdKj5YChlquUWRZm1RxzdGCN1iyFRAHjJRkpb68,2772
47
+ scandeval/dataset_configs/faroese.py,sha256=MxSrvqux0ekQ11jqK2wjQqBt6qqPLz5qzUYcB6gkWP0,1246
48
+ scandeval/dataset_configs/finnish.py,sha256=EdLNQRhqC3DpzcKMoUaPt9XHriddVpkPDnlEkOW-3IU,2462
49
+ scandeval/dataset_configs/french.py,sha256=xsHizw6C9GNZ6AH4iP6IXe4OLS8vprkJzMSj0a85XNU,2628
50
+ scandeval/dataset_configs/german.py,sha256=cPiPxAEpEJtnE51xVPg1ZH61TwlgPzCDc4dRdyMGpzQ,2877
51
+ scandeval/dataset_configs/greek.py,sha256=ZmCVeHVZbP_vjkRLVBNVzB8BHh1f_8Lkk1BYXYpctmk,1474
52
+ scandeval/dataset_configs/hungarian.py,sha256=iHePTXYQOUEwzGuhwTftLeX0Vlf3AB38igwp1N8DljE,1420
53
+ scandeval/dataset_configs/icelandic.py,sha256=vbo-2NQeRH1zW0hishEvcIZkqUzmIh1TOOHcg74Ax7Q,3571
54
+ scandeval/dataset_configs/italian.py,sha256=A0hZcrYddFHJapefHgbvlqFqHL2IPVhx-PZXKTInf-U,2780
55
+ scandeval/dataset_configs/latvian.py,sha256=CwkbuFss9Ph7GETubPmx3qKCup5dXthoFgNwZkQl2nw,1926
56
+ scandeval/dataset_configs/lithuanian.py,sha256=zMdbB4Bx1wmjUK53Wnfu8Lx7W201nNR6zJSZIzHfckQ,1723
57
+ scandeval/dataset_configs/norwegian.py,sha256=sWzLQn2svAjp5FJCQe94Oyk3AKMu4U0bYzg1xhmw6S4,5504
58
+ scandeval/dataset_configs/polish.py,sha256=llFqr3WycBItPHgqs2zPYU5uTQYMhIcUM-mEZE1vGZU,2093
59
+ scandeval/dataset_configs/portuguese.py,sha256=T7PkSkGnENFn7GuDSjqmvZZgnEyVQINzgBZ3r8utPH4,2419
60
+ scandeval/dataset_configs/romanian.py,sha256=vtZnM3RhAj_Y05XYiip_0Nc1rO-7nNsizFUKFM_LmkE,1470
61
+ scandeval/dataset_configs/serbian.py,sha256=KxHL6CdSVbOecfYG-4fN8GLN3poi3m3LV7GnrQ79wvY,1410
62
+ scandeval/dataset_configs/slovak.py,sha256=7JQj2GlRj1giACKqVZ6QJxiFBzP9byoowm0DjPaZ5u8,1252
63
+ scandeval/dataset_configs/slovene.py,sha256=x1MZp_8gI5W-R-3StButdMGwaX0PD6miYRBWAael_V0,1270
64
+ scandeval/dataset_configs/spanish.py,sha256=zYAccY2LCdPg25O23lFidx77iTjFvLME9PecnDQoTGQ,2947
65
+ scandeval/dataset_configs/swedish.py,sha256=BP7F_6WumaFgZPS5qQst9EKzr6__gO4Nsz8IoLUF8DY,3288
66
+ scandeval/dataset_configs/ukrainian.py,sha256=mbmgyf-yIfarrWA4EDlEg3CkmH5A091_pc1jN76fX2I,1526
67
+ scandeval/metrics/__init__.py,sha256=nrjFjTK7NO5I8U6acULNzqezmMWN21aWd4faW4oYGHo,233
68
+ scandeval/metrics/base.py,sha256=dUBby-ZzettMjdcjek6rw0JTZMuScX4cQ2Rd6untKHY,2525
69
+ scandeval/metrics/bias.py,sha256=sV87PLzjc3XPsSAz2HJ4hmlLZ_IcHDsIUr7gYmp9HKc,7765
70
+ scandeval/metrics/huggingface.py,sha256=eKXn5wBcNdzs23cgJ64XG8LIwen1wDxXy2kAOw3bjoQ,9579
71
+ scandeval/metrics/llm_as_a_judge.py,sha256=vxKH8uz2gm4Mw50xAfXFZHHbbfPH_KAyjWbS4N139Lc,12140
72
+ scandeval/metrics/pipeline.py,sha256=9QrsFKS_Qjs71DR6Pw7O7QS523SpWrWPrfEwTa99MdQ,10883
73
+ scandeval/metrics/speed.py,sha256=G5hEQcrtqxF070ZZwLDh61iZnq2CSW2o6ZM7zR4lOTY,1298
74
+ scandeval/prompt_templates/__init__.py,sha256=p3CUcSaJiiUm6EQyhceDUjotH7GdyHolMznAn2f44as,519
75
+ scandeval/prompt_templates/classification.py,sha256=QuZh6hTMaqMYTsoruAhwjVP9381zzlQmDIwSeyGnav0,10121
76
+ scandeval/prompt_templates/linguistic_acceptability.py,sha256=HgzVDsv5PzM-5cZL-JWzDHakgsxs7gsTF9LtiS9oqFU,16101
77
+ scandeval/prompt_templates/multiple_choice.py,sha256=itD1enLOlwr3aKGTo0Ra_Jg65v6z060qxkPq0HlYNTE,13513
78
+ scandeval/prompt_templates/named_entity_recognition.py,sha256=ZPe5cLCnCUgVDF249y9WkGi9BZlzD8DA6vRQHEYpPo8,31418
79
+ scandeval/prompt_templates/reading_comprehension.py,sha256=4FHsOSn5jhmaz3enmxHn9oWaxnkAAtoMYeGLEgHe-v0,16941
80
+ scandeval/prompt_templates/sentiment_classification.py,sha256=cSicNEfPxOdyquIqN9Mf3U_PDI3JOlp30PmajV4HXJs,18076
81
+ scandeval/prompt_templates/simplification.py,sha256=DF50F1JSxy00ZOO3OJJZOtoTlkGjE35krjjbDaW7RUk,900
82
+ scandeval/prompt_templates/summarization.py,sha256=LKiz5fd6A0J5NyoLBeyrZ4ir1skDB2pytKCEeF4zbmw,10770
83
+ scandeval/prompt_templates/token_classification.py,sha256=8Uw34mN2xQ_5es-nz7vCK-GgDg_oE-zsAzPJPzAxFrQ,15531
84
+ scandeval/task_group_utils/__init__.py,sha256=CorGVkixkoEDOQuDsrOGlTmF1zmM0wnGHs8psWTfD28,72
85
+ scandeval/task_group_utils/multiple_choice_classification.py,sha256=PWUXeGn-9RsXxdVRYHJASyBVQ8L5Jla981eot0GLooY,7316
86
+ scandeval/task_group_utils/question_answering.py,sha256=tuMwr-RnvJap5jkTrluxC1tfQVS6rKN8_ifNwis-auw,29064
87
+ scandeval/task_group_utils/sequence_classification.py,sha256=U3wTU6eRVUvQlgfSeaug55y_UloPq8G6H7d1Qb2xqW0,16838
88
+ scandeval/task_group_utils/text_to_text.py,sha256=p6zzjob70qQUpfUOs0LToSzavE1ERqRAHu_727Jb2mM,5476
89
+ scandeval/task_group_utils/token_classification.py,sha256=h4b9tZy7WxFgBCtFj8neZtdS4zy7FLN-nwDXaS-gMqI,17334
90
+ scandeval-16.13.0.dist-info/METADATA,sha256=sLxqkvR0o_DGkrLUfkTaZySb4dcg8Cmey7hJ1qyp7aQ,12312
91
+ scandeval-16.13.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
92
+ scandeval-16.13.0.dist-info/entry_points.txt,sha256=-mtBu-10bFWeZ2bS32gVK6-s-LNCQLxvnNUPBLd5ud4,87
93
+ scandeval-16.13.0.dist-info/licenses/LICENSE,sha256=vb2c84xITVnhnVFsBS8AWXl-4S-KpxN6VMxTqqYlV3s,1080
94
+ scandeval-16.13.0.dist-info/RECORD,,