-
Notifications
You must be signed in to change notification settings - Fork 56
/
pyproject.toml
34 lines (31 loc) · 1.11 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "omniquant"
version = "0.1.0"
description = "An efficient, accurate, and omnibearing quantization algorithm for LLMs, encompassing both weight-only quantization (W4A16/W3A16/W2A16) and weight-activation quantization (W8A8, W6A6, W4A4)."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"datasets>=2.0.0","einops","jsonlines","numexpr",
"openai>=0.6.4","omegaconf>=2.2","peft>=0.2.0",
"pybind11>=2.6.2","pycountry","pytablewriter",
"rouge-score>=0.0.4","sacrebleu==1.5.0",
"scikit-learn>=0.24.1","sqlitedict",
"tqdm-multiprocess","zstandard",
"accelerate", "sentencepiece", "tokenizers>=0.12.1",
"torch>=2.0.0", "torchvision",
"transformers>=4.31.0",
"texttable",
"toml", "attributedict",
"protobuf"
]
[tool.setuptools.packages.find]
exclude = ["results*", "scripts*", "examples*"]
[tool.wheel]
exclude = ["results*", "scripts*", "examples*"]