-
Notifications
You must be signed in to change notification settings - Fork 10
/
pyproject.toml
83 lines (79 loc) · 1.53 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ai2-molmo"
dynamic = ["version"]
readme = "README.md"
description = "Multimodal Open Language Model (Molmo)"
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",
"omegaconf",
"rich",
"boto3",
"google-cloud-storage",
"tokenizers",
"packaging",
"cached_path>=1.6.4",
"transformers>=v4.37.1",
"datasets",
"huggingface_hub",
"sentencepiece",
"requests",
"einops",
"einops-exts",
"tqdm",
"gcsfs==2023.9.2",
"accelerate"
]
[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-gantry",
"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-molmo[dev,train,serve]",
]
[project.urls]
Homepage = "https://github.com/allenai/molmo"
Repository = "https://github.com/allenai/molmo"
[tool.setuptools]
include-package-data = true
packages = ["olmo"]