Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 1,500 Bytes
d1ed69b 64a657c d1ed69b 80b5d72 d1ed69b 1aa678f d1ed69b a8fcdeb d1ed69b 80b5d72 ddcf398 4366589 d1ed69b 80b5d72 1aa678f 8002416 1aa678f 80b5d72 1aa678f |
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 |
[project]
name = "yourbench-advanced"
version = "0.1.0"
authors = [
{ name = "Sumuk Shashidhar", email = "[email protected]" },
{ name = "Alina Lozovskaia", email = "[email protected]" },
{ name = "Clémentine Fourrier", email = "[email protected]" },
{ name = "Nathan Habib", email = "[email protected]" },
]
requires-python = ">=3.12, <3.13"
dependencies = [
"yourbench",
"asyncio>=3.4.3",
"datasets>=3.3.0",
"gradio[oauth]>=5.21.0",
"loguru>=0.7.3",
"python-dotenv>=1.0.1",
"tqdm>=4.67.1",
"ruff>=0.11.2",
"lighteval[extended-tasks,math]",
"ruamel-yaml>=0.18.10",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.uv.sources]
yourbench = { git = "https://github.com/huggingface/yourbench.git", branch = "main" }
lighteval = { git = "https://github.com/huggingface/lighteval.git", branch = "main" }
[tool.ruff]
line-length = 119
lint.ignore = ["E501", "C901", "F841"]
lint.select = ["C", "E", "F", "I", "W"]
lint.fixable = ["A", "B", "C", "D", "E", "F", "I", "W"]
preview = true
[tool.ruff.lint.isort]
length-sort = true
lines-after-imports = 2
no-lines-before = ["standard-library", "local-folder"]
known-local-folder = ["yourbench_space"]
known-first-party = ["datasets", "huggingface_hub", "gradio"]
split-on-trailing-comma = true
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
|