-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·99 lines (91 loc) · 1.84 KB
/
pyproject.toml
File metadata and controls
executable file
·99 lines (91 loc) · 1.84 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
[tool.black]
line-length = 240
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "unicom"
version = "2.0.0"
description = "Multi-label Cluster Discrimination for Visual Representation Learning"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
[project.optional-dependencies]
standalone = [
"shortuuid",
"httpx==0.24.0",
"einops",
"ftfy",
]
train = [
"numpy==1.26.0",
"open_clip_torch",
"fastapi",
"markdown2[all]",
"requests",
"sentencepiece",
"torch==2.1.2",
"torchvision==0.16.2",
"uvicorn",
"wandb",
"deepspeed==0.12.6",
"peft==0.9.0",
"accelerate==0.31.0",
"tokenizers==0.19.1",
"transformers==4.44.0",
"bitsandbytes==0.43.0",
"scikit-learn==1.5.1",
"sentencepiece~=0.2.0",
"einops==0.6.1",
"einops-exts==0.0.4",
"gradio_client==0.2.9",
"urllib3==2.2.2",
"datasets==2.16.1",
"pydantic==2.7.1",
"timm",
"hf_transfer",
"opencv-python",
"av",
"decord",
"tyro",
"scipy",
]
[project.urls]
"Homepage" = "https://github.com/deepglint/unicom"
"Bug Tracker" = "https://github.com/deepglint/unicom/issues"
[tool.setuptools.packages.find]
include = ["llava*", ]
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*",
]