CoolFace
Apppublic

neuralcomputation/batik

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
pyproject.toml44 linesDownload Raw Back to root
1[build-system]
2requires = ["setuptools>=61.0"]
3build-backend = "setuptools.build_meta"
4
5[project]
6name = "llava"
7version = "1.2.2.post1"
8description = "Towards GPT-4 like large language and visual assistant."
9readme = "README.md"
10requires-python = ">=3.8"
11classifiers = [
12    "Programming Language :: Python :: 3",
13    "License :: OSI Approved :: Apache Software License",
14]
15dependencies = [
16    "torch==2.1.2", "torchvision==0.16.2",
17    "transformers==4.37.2", "tokenizers==0.15.1", "sentencepiece==0.1.99", "shortuuid",
18    "accelerate==0.21.0", "peft", "bitsandbytes",
19    "pydantic", "markdown2[all]", "numpy", "scikit-learn==1.2.2",
20    "gradio==4.16.0", "gradio_client==0.8.1",
21    "requests", "httpx==0.24.0", "uvicorn", "fastapi",
22    "einops==0.6.1", "einops-exts==0.0.4", "timm==0.6.13",
23    "protobuf", "timecode", "sortedcontainers", "qtpy", "pyqt5-tools",
24    "scipy", "matplotlib", "colour_demosaicing", "sk-video",
25    "opencv-python", "progressbar", "openai",
26    "clip @ git+https://github.com/openai/CLIP@main",
27    "scikit-learn", "tensorflow", "sentencepiece", "streamlit",
28    "hdbscan", "plotly", "ipywidgets"
29]
30
31[project.optional-dependencies]
32train = ["deepspeed==0.12.6", "ninja", "wandb"]
33build = ["build", "twine"]
34
35[project.urls]
36"Homepage" = "https://llava-vl.github.io"
37"Bug Tracker" = "https://github.com/haotian-liu/LLaVA/issues"
38
39[tool.setuptools.packages.find]
40exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
41
42[tool.wheel]
43exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
44