-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (100 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
106 lines (100 loc) · 1.91 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
105
106
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "llava"
version = "1.7.0.dev0"
dependencies = [
"llava[standalone]",
"fastapi",
"markdown2[all]",
"requests",
"sentencepiece",
"uvicorn",
"wandb",
"hf_transfer",
"av",
"decord",
"tyro",
"pytablewriter",
"sacrebleu",
"openai",
"loguru",
"evaluate",
"sqlitedict",
"tenacity",
"einops",
"qwen-vl-utils",
]
[project.optional-dependencies]
hf = [
"numpy==1.26.1",
"torch==2.6.0",
"torchvision==0.21.0",
"transformers==4.53.0",
"accelerate==1.10.0",
"tokenizers==0.21.4",
"datasets==2.16.1",
"pydantic==1.10.8",
"timm==1.0.19",
"open_clip_torch",
"deepspeed==0.14.4",
"peft==0.4.0",
"bitsandbytes==0.45.1",
"scikit-learn==1.2.2",
"einops-exts==0.0.4",
"gradio_client==0.2.9",
"urllib3==1.26.20",
"opencv-python==4.11.0.86",
"scipy==1.15.3",
]
vllm = [
"numpy==2.2.6",
"torch==2.9.1",
"torchvision==0.24.1",
"torchaudio==2.9.1",
"transformers==4.57.3",
"accelerate==1.0.1",
"tokenizers==0.22.2",
"datasets==4.5.0",
"pydantic==2.12.5",
"timm==1.0.24",
"vllm==0.14.1",
"ray==2.53.0",
"compressed-tensors==0.13.0",
"xgrammar==0.1.29",
"opencv-python-headless==4.13.0.90",
]
[tool.setuptools.packages.find]
include = ["llava*", "trl*"]
exclude = [
"assets*",
"benchmark*",
"docs",
"dist*",
"playground*",
"scripts*",
"tests*",
"checkpoints*",
"project_checkpoints*",
"debug_checkpoints*",
"mlx_configs*",
"wandb*",
"notebooks*",
]
[tool.wheel]
exclude = [
"assets*",
"benchmark*",
"docs",
"dist*",
"playground*",
"scripts*",
"tests*",
"checkpoints*",
"project_checkpoints*",
"debug_checkpoints*",
"mlx_configs*",
"wandb*",
"notebooks*",
]