Spaces:
Running
on
Zero
Running
on
Zero
Upload pyproject.toml
Browse files- pyproject.toml +37 -0
pyproject.toml
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[build-system]
|
2 |
+
requires = ["setuptools>=61.0"]
|
3 |
+
build-backend = "setuptools.build_meta"
|
4 |
+
|
5 |
+
[project]
|
6 |
+
name = "cumo"
|
7 |
+
version = "1.0.0"
|
8 |
+
description = "CuMo: Scaling Multimodal LLM with Co-Upcycled Mixture-of-Experts."
|
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 |
+
"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.23.3", "uvicorn", "fastapi",
|
22 |
+
"einops==0.6.1", "einops-exts==0.0.4", "timm==0.6.13",
|
23 |
+
]
|
24 |
+
|
25 |
+
[project.optional-dependencies]
|
26 |
+
train = ["deepspeed==0.13.4", "ninja", "wandb"]
|
27 |
+
build = ["build", "twine"]
|
28 |
+
|
29 |
+
[project.urls]
|
30 |
+
"Homepage" = "https://github.com/SHI-Labs/CuMo"
|
31 |
+
"Bug Tracker" = "https://github.com/SHI-Labs/CuMo/issues"
|
32 |
+
|
33 |
+
[tool.setuptools.packages.find]
|
34 |
+
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
|
35 |
+
|
36 |
+
[tool.wheel]
|
37 |
+
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
|