forked from ZichengXu/Decoding-Tree-Sketching
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 760 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 760 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
33
34
35
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dts"
version = "0.1.0"
description = "a model-agnostic decoding framework for efficient reasoning"
readme = "README.md"
requires-python = "==3.10.*"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"accelerate==1.12.0",
"datasets==4.4.1",
"numpy==2.2.6",
"PyYAML==6.0.3",
"scikit-learn==1.7.2",
"tiktoken==0.12.0",
"torch==2.6.0",
"torchaudio==2.9.0",
"tqdm==4.67.1",
"transformers==4.54.0",
]
[tool.setuptools]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
where = ["."]
include = ["decoding_tree_sketching*"]