-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
83 lines (75 loc) · 1.58 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "mindspeed-mm"
version = "0.1"
requires-python = ">=3.10"
description = "MindSpeed MM is designed to provide end-to-end large multi-modal model solutions for Huawei's Ascend chips, including models, algorithms, and downstream tasks."
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name = "The MindSpeed MM Team" },
]
keywords = ["AI", "Ascend", "DeepLearning", "MultiModal", "MindSpeed"]
dependencies = [
"numpy",
"av",
"ftfy",
"bs4",
"beartype",
"timm==1.0.8",
"pandas==2.0.3",
"torch==2.7.1",
"torchvision",
"torchdata",
"diffusers==0.30.3",
"transformers==4.57.0",
"accelerate==0.32.1",
"pandarallel",
"datasets",
"qwen_vl_utils",
"imageio",
"imageio-ffmpeg",
"peft==0.7.1",
"pydantic>=2.10.4",
"jsonargparse[all]>=4.40.0",
"gpytorch",
"orjson",
"rich",
"pybind11",
"ninja",
"wheel",
"six",
"regex",
"decorator",
"attrs",
"psutil",
"pyyaml",
"protobuf",
"einops",
"scipy",
"pytest-mock",
"scikit-learn",
"SQLAlchemy"
]
[build-system]
requires = ["setuptools >= 65.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
exclude = ["ci*", "docs", "sources", "tests*"]
[project.optional-dependencies]
test = [
"pytest",
"transformers[sentencepiece]",
]
evaluate = [
"portalocker==2.8.2",
"rich==13.7.1",
"xlsxwriter==3.2.0",
"openpyxl==3.1.5"
]
lint = [
"black",
]
[project.scripts]
mm-convert = "checkpoint.convert_cli:main"