-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpyproject.toml
More file actions
104 lines (89 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
104 lines (89 loc) · 1.7 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[tool.black]
line-length = 120
[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm[tomli]>=6.3"]
build-backend = "setuptools.build_meta"
[project]
name = "lmms_engine"
version = "0.1.3.dev"
authors = [{name = "LMMs-Lab"}]
description = "A simple, unified multimodal models training engine. Lean, flexible, and built for hacking, and hacking at scale."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
dependencies = [
"datasets",
"hf_transfer",
"transformers>=4.57.1",
"accelerate",
"pillow",
"peft",
"deepspeed",
"bitsandbytes",
"triton",
"loguru",
"pydantic",
"jsonlines",
"librosa",
"pynvml",
"decord",
"torch",
"torchvision",
"pyyaml",
"wandb",
"torchdata",
"liger-kernel>=0.6.1",
"qwen-vl-utils",
"qwen-omni-utils",
"einops",
"pandas",
"rich>=14.1.0",
"hydra-core",
"omegaconf",
"requests",
"tqdm",
"opencv-python>=4.12.0.88",
]
[project.optional-dependencies]
pref = [
"trl==0.16.1",
"math-verify",
]
storage = [
"google-cloud-storage",
"azure-storage-blob",
"azure-identity",
]
bagel = [
"opencv_python",
]
sit = [
"timm",
"diffusers",
"torchdiffeq",
]
eval = [
"httpx",
]
all = [
"lmms_engine[pref]",
"lmms_engine[storage]",
"lmms_engine[eval]",
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]
exclude = [
"test"
]
[tool.wheel]
exclude = [
"test"
]
[project.scripts]
lmms_launch="lmms_engine.launch.cli:main"
[project.urls]
Homepage = "https://lmms-lab.com/"
Repository = "https://github.com/EvolvingLMMs-Lab/lmms_engine"
[tool.isort]
known_third_party = ["wandb"]