-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (62 loc) · 1.74 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (62 loc) · 1.74 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "GRRM"
dynamic = ["version"]
dependencies = [
"torch>=2.6.0",
"torchvision",
"transformers>=4.56.2",
"datasets",
"pandas",
"pyarrow",
"fire",
"wandb",
]
requires-python = ">=3.10"
authors = [
{name = "Sen Yang", email = "yangsen@smail.nju.edu.cn"},
]
maintainers = [
{name = "Sen Yang", email = "yangsen@smail.nju.edu.cn"},
]
description = "GRRM: Group Relative Reward Modeling for Machine Translation"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["deep-learning", "pytorch", "large language model", "LLM", "machine translation", "reward modeling"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
[project.urls]
Homepage = "https://github.com/NJUNLP/GRRM"
Repository = "https://github.com/NJUNLP/GRRM"
Issues = "https://github.com/NJUNLP/GRRM/issues"
[tool.setuptools]
packages = []
py-modules = []
[tool.setuptools.dynamic]
version = {file = ["VERSION"]}
[tool.setuptools.package-data]
"*" = ["*.md"]
[project.optional-dependencies]
infer = [
"vllm>=0.10.2",
"accelerate>=1.10.0",
"flash-attn>=2.8.0",
]
eval = [
"sacrebleu[ja,ko]",
"bleurt @ git+https://github.com/google-research/bleurt.git@master",
"tensorflow[and_cuda]",
"kernels",
]