Spaces:
Running
Running
File size: 775 Bytes
96f4ca1 | 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 | [project]
name = "cctm-reproduction"
version = "0.1.0"
description = "Claim-by-claim reproduction of conditional conformal test martingales"
requires-python = "==3.12.*"
dependencies = [
"datasets==4.0.0",
"huggingface-hub==0.34.3",
"loguru==0.7.3",
"marimo==0.14.17",
"matplotlib==3.10.5",
"numpy==2.3.2",
"pandas==2.3.1",
"pillow==11.3.0",
"pyarrow==21.0.0",
"pytest==8.4.1",
"scipy==1.16.1",
"sympy==1.14.0",
"timm==1.0.19",
"torch==2.7.1",
"torchvision==0.22.1",
]
[tool.uv]
package = false
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cpu" }
torchvision = { index = "pytorch-cpu" }
[tool.pytest.ini_options]
testpaths = ["repro/tests"]
|