-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.05 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
[build-system]
requires = ["hatchling", "torch==2.5.1"]
build-backend = "hatchling.build"
[project]
name = "r1-vlm"
version = "0.1.0"
description = "GRPO for VLMs"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Sunil Kumar", email = "[email protected]" }
]
license = { text = "MIT" }
dependencies = [
"accelerate>=1.3.0",
"datasets>=3.2.0",
"deepspeed>=0.16.3",
"gradio>=5.16.0",
"imgcat>=0.6.0",
"ipdb>=0.13.13",
"jinja2>=3.1.5",
"peft>=0.14.0",
"pycocotools>=2.0.8",
"python-dotenv>=1.0.1",
"qwen-vl-utils>=0.0.10",
"torch==2.5.1",
"torchvision==0.20.1",
"transformers==4.49.0",
"vllm==0.7.3",
"wandb>=0.19.5",
"verifiers",
"flash-attn==2.7.3",
"spaces>=0.32.0",
"imageio>=2.37.0",
"levenshtein>=0.27.1",
"pillow>=11.1.0",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.uv.sources]
trl = { path = "../trl", editable = true }
verifiers = { path = "../verifiers", editable = true }
[tool.hatch.build.targets.wheel]
packages = ["src/r1_vlm"]