Spaces:
Runtime error
Runtime error
lorocksUMD
commited on
Commit
•
d0143e2
1
Parent(s):
7eb0640
Upload pyproject.toml
Browse files- pyproject.toml +39 -0
pyproject.toml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[build-system]
|
2 |
+
requires = ["setuptools>=61.0"]
|
3 |
+
build-backend = "setuptools.build_meta"
|
4 |
+
|
5 |
+
[project]
|
6 |
+
name = "llava"
|
7 |
+
version = "1.1.0"
|
8 |
+
description = "Towards GPT-4 like large language and visual assistant."
|
9 |
+
readme = "README.md"
|
10 |
+
requires-python = ">=3.8"
|
11 |
+
classifiers = [
|
12 |
+
"Programming Language :: Python :: 3",
|
13 |
+
"License :: OSI Approved :: Apache Software License",
|
14 |
+
]
|
15 |
+
dependencies = [
|
16 |
+
"einops", "fastapi", "gradio==3.35.2", "markdown2[all]", "numpy",
|
17 |
+
"requests", "sentencepiece", "tokenizers>=0.12.1",
|
18 |
+
"torch", "torchvision", "uvicorn", "wandb",
|
19 |
+
"shortuuid", "httpx==0.24.0",
|
20 |
+
"deepspeed==0.9.5",
|
21 |
+
"peft==0.4.0",
|
22 |
+
"transformers==4.31.0",
|
23 |
+
"accelerate==0.21.0",
|
24 |
+
"bitsandbytes==0.41.0",
|
25 |
+
"scikit-learn==1.2.2",
|
26 |
+
"sentencepiece==0.1.99",
|
27 |
+
"einops==0.6.1", "einops-exts==0.0.4", "timm==0.6.13",
|
28 |
+
"gradio_client==0.2.9"
|
29 |
+
]
|
30 |
+
|
31 |
+
[project.urls]
|
32 |
+
"Homepage" = "https://llava-vl.github.io"
|
33 |
+
"Bug Tracker" = "https://github.com/haotian-liu/LLaVA/issues"
|
34 |
+
|
35 |
+
[tool.setuptools.packages.find]
|
36 |
+
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
|
37 |
+
|
38 |
+
[tool.wheel]
|
39 |
+
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
|