Repoaner commited on
Commit
2fe6880
·
verified ·
1 Parent(s): 28ab3f3

Upload LLaVA-Next-3D/pyproject.toml with huggingface_hub

Browse files
Files changed (1) hide show
  1. LLaVA-Next-3D/pyproject.toml +102 -0
LLaVA-Next-3D/pyproject.toml ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.black]
2
+ line-length = 240
3
+
4
+ [build-system]
5
+ requires = ["setuptools>=61.0"]
6
+ build-backend = "setuptools.build_meta"
7
+
8
+ [project]
9
+ name = "llava-next-3d"
10
+ version = "1.0.0"
11
+ description = "llava-next-3d"
12
+ readme = "README.md"
13
+ requires-python = ">=3.8"
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "License :: OSI Approved :: Apache Software License",
17
+ ]
18
+
19
+ [project.optional-dependencies]
20
+ standalone = [
21
+ "shortuuid",
22
+ "httpx==0.24.0",
23
+ "einops",
24
+ "ftfy",
25
+ ]
26
+
27
+
28
+ train = [
29
+ "llava[standalone]",
30
+ "numpy==1.26.1",
31
+ "open_clip_torch",
32
+ "fastapi",
33
+ "markdown2[all]",
34
+ "numpy",
35
+ "requests",
36
+ "sentencepiece",
37
+ "torch==2.1.2",
38
+ "torchvision==0.16.2",
39
+ "uvicorn",
40
+ "wandb",
41
+ "deepspeed==0.14.4",
42
+ "peft==0.4.0",
43
+ "accelerate==0.33.0",
44
+ "tokenizers~=0.15.2",
45
+ "transformers@git+https://github.com/huggingface/transformers.git@1c39974a4c4036fd641bc1191cc32799f85715a4",
46
+ "bitsandbytes==0.41.0",
47
+ "scikit-learn==1.2.2",
48
+ "sentencepiece~=0.1.99",
49
+ "einops==0.6.1",
50
+ "einops-exts==0.0.4",
51
+ "gradio_client==0.2.9",
52
+ "urllib3<=2.0.0",
53
+ "datasets==2.16.1",
54
+ "pydantic==1.10.8",
55
+ "timm",
56
+ "hf_transfer",
57
+ "opencv-python",
58
+ "av",
59
+ "decord",
60
+ "tyro",
61
+ "scipy",
62
+ "imageio",
63
+ "ray",
64
+ "shortuuid",
65
+ "fasteners"
66
+ ]
67
+
68
+
69
+ [tool.setuptools.packages.find]
70
+ include = ["llava*", "trl*"]
71
+ exclude = [
72
+ "assets*",
73
+ "benchmark*",
74
+ "docs",
75
+ "dist*",
76
+ "playground*",
77
+ "scripts*",
78
+ "tests*",
79
+ "checkpoints*",
80
+ "project_checkpoints*",
81
+ "debug_checkpoints*",
82
+ "mlx_configs*",
83
+ "wandb*",
84
+ "notebooks*",
85
+ ]
86
+
87
+ [tool.wheel]
88
+ exclude = [
89
+ "assets*",
90
+ "benchmark*",
91
+ "docs",
92
+ "dist*",
93
+ "playground*",
94
+ "scripts*",
95
+ "tests*",
96
+ "checkpoints*",
97
+ "project_checkpoints*",
98
+ "debug_checkpoints*",
99
+ "mlx_configs*",
100
+ "wandb*",
101
+ "notebooks*",
102
+ ]