-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (94 loc) · 2.2 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (94 loc) · 2.2 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
100
101
102
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "LightRFT"
version = "0.1.0"
description = "Light, Efficient, Omni-modal & Reward-model Driven Reinforcement Fine-Tuning Framework"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "LightRFT Team", email = "DeepLink-org@pjlab.org.cn"}
]
keywords = [
"reinforcement learning",
"RLVR",
"RLHF",
"large language models",
"vision-language models",
"reward models",
"omni-modal",
"multi-modal",
"PPO",
"GRPO",
"deep learning",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"torch>=2.5.1",
"transformers==4.51.3",
"vllm==0.7.3",
"sglang==0.4.5",
"deepspeed>=0.15.0",
"accelerate",
"datasets",
"wandb",
"peft",
"easydict",
"decord",
"orjson",
"bitsandbytes",
"einops",
"loralib",
"tensorboard",
"tqdm",
"nltk",
"mathruler",
"loguru",
"librosa",
]
[project.optional-dependencies]
dev = [
"pytest",
"black",
"pylint",
"yapf==0.29.0",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-autobuild",
]
eval = [
"latex2sympy2",
"timeout_decorator",
"word2number",
]
flash-attn = [
"flash-attn",
]
[project.urls]
Homepage = "https://github.com/DeepLink-org/LightRFT"
Documentation = "https://github.com/DeepLink-org/LightRFT/tree/main/docs"
Repository = "https://github.com/DeepLink-org/LightRFT"
"Bug Reports" = "https://github.com/DeepLink-org/LightRFT/issues"
[tool.setuptools]
packages = ["lightrft"]
[tool.setuptools.package-data]
lightrft = ["py.typed"]
[tool.black]
line-length = 120
target-version = ['py310', 'py311']
[tool.pylint.messages_control]
max-line-length = 120