-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
43 lines (41 loc) · 866 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "vlrlhf"
version = "0.0.1"
dependencies = [
"numpy",
"loguru",
"torch",
"torchvision",
"deepspeed",
"transformers==4.41.0",
"peft",
"trl == 0.8.1",
"einops",
"tiktoken",
"matplotlib",
"pillow",
"transformers_stream_generator",
"wandb",
"jsonlines",
"scikit-learn",
"pandas",
"pymysql",
"openpyxl",
"gradio_client",
"pre-commit"
]
requires-python = ">=3.10"
authors = [
{name = "Geary Zhang", email = "gearyzhang@outlook.com"},
]
maintainers = [
{name = "Geary Zhang", email = "gearyzhang@outlook.com"},
]
description = "A RLHF Infrastructure for Vision-Language Model."
keywords = ["pytorch","RLHF","VLM"]
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["*egg-info"]