-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 826 Bytes
/
Copy pathpyproject.toml
File metadata and controls
32 lines (28 loc) · 826 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "beyond-temperature"
version = "1.0.0"
description = "Official implementation of 'Beyond Temperature: Hyperfitting as a Late-Stage Geometric Expansion' (ICML 2026)"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
dependencies = [
"torch>=2.0.0",
"transformers>=4.36.0",
"datasets>=2.14.0",
"accelerate>=0.24.0",
"peft>=0.6.0",
"bitsandbytes>=0.41.0",
"scipy>=1.11.0",
"numpy>=1.24.0",
"matplotlib>=3.7.0",
"tqdm>=4.65.0",
]
[project.optional-dependencies]
eval = ["mauve-text>=0.3.0", "sentence-transformers>=2.2.0"]
[project.scripts]
beyond-temperature = "beyond_temperature.cli:main"
[tool.setuptools.packages.find]
include = ["beyond_temperature*"]