-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (51 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
57 lines (51 loc) · 1.34 KB
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
56
57
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "xares-llm"
version = "0.0.12"
description = "eXtensive Audio Representation and Evaluation Suite - Large Language Model"
dependencies = [
"loguru",
"numpy",
"jiwer",
"scikit-learn",
"torch>=2.2.1",
"torchaudio>=2.2.1",
"torchmetrics>=1.6.1",
"pandas>=2.2.3",
"transformers>=4.45",
"tqdm",
"webdataset>=1.0",
"torchcodec>=0.8.0",
"accelerate>=1.10.1",
"peft>=0.18.0",
"mecat>=1.1.0",
]
authors = [
{name = "Heinrich Dinkel", email = "dinkelheinrich@xiaomi.com"},
{name = "Xiyang Li", email = "lixiyang@xiaomi.com"},
{name = "Junbo Zhang", email = "zhangjunbo1@xiaomi.com"},
{name = "Yadong Niu", email = "niuyadong@xiaomi.com"},
{name = "Jiahao Zhou", email = "zhoujiahao5@xiaomi.com"},
]
readme = "README.md"
requires-python = ">=3.10"
license-files = ["LICENSE"]
[project.urls]
Repository = "https://github.com/xiaomi-research/xares-llm.git"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
xares_llm = [
"tasks/all/eval/*yaml",
"tasks/all/train/*yaml",
"tasks/task1/eval/*yaml",
"tasks/task1/train/*yaml",
"tasks/task2/eval/*yaml",
"tasks/task2/train/*yaml",
"tasks/single/eval/*.yaml",
"tasks/single/train/*.yaml",
]