forked from allenai/molmoact
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (88 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
93 lines (88 loc) · 1.72 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai2-molmoact"
dynamic = ["version"]
readme = "README.md"
description = "Multimodal Open Language Model for Action (MolmoAct)"
authors = [
{ name = "Allen Institute for Artificial Intelligence" }
]
requires-python = ">=3.10"
license = { file = "LICENSE" }
dependencies = [
"absl-py",
"cached_property",
"fiddle >= 0.2.5",
"numpy",
"torch>=2.3.1",
"torchvision>=0.18.1",
"torchao==0.10.0",
"omegaconf",
"rich",
"boto3",
"google-cloud-storage",
"tokenizers",
"packaging",
"cached_path>=1.6.4",
"transformers==v4.52.3",
"datasets",
"huggingface_hub",
"sentencepiece",
"requests",
"einops",
"einops-exts",
"tqdm",
"gcsfs==2023.9.2",
"accelerate",
"imageio",
"imageio[pyav]",
"decord",
"av",
"moviepy",
"peft",
"opencv-python-headless"
]
[project.optional-dependencies]
dev = [
"ruff",
"mypy>=1.0,<1.4",
"black>=23.1,<24.0",
"isort>=5.12,<5.13",
"pytest",
"pytest-sphinx",
"twine>=1.11.0",
"setuptools",
"wheel",
"build",
]
train = [
"wandb",
"beaker-py==1.36.2",
"beaker-gantry==1.17.0",
"click",
"torchmetrics",
"smashed[remote]>=0.21.1",
"safetensors",
"scikit-learn",
"msgspec>=0.14.0",
"openai",
"python-Levenshtein",
"editdistance"
]
serve = [
"pydantic",
"uvicorn",
"gradio",
"fastapi",
]
all = [
"ai2-molmoact[dev,train,serve]",
]
[project.urls]
Homepage = "https://github.com/allenai/MolmoAct"
Repository = "https://github.com/allenai/MolmoAct"
[tool.setuptools]
include-package-data = true
packages = ["olmo"]