-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (86 loc) · 2.33 KB
/
pyproject.toml
File metadata and controls
91 lines (86 loc) · 2.33 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "editreward"
version = "0.1.0"
description = "EditReward: A human-aligned reward model for instruction-guided image editing"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "TIGER Lab" },
]
keywords = [
"machine learning",
"computer vision",
"image editing",
"reward model",
"vision language model",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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.0",
"torchvision>=0.20.0",
"torchaudio>=2.5.0",
"transformers==4.57.0",
"accelerate",
"datasets",
"Pillow",
"numpy",
"scipy",
"tqdm",
"PyYAML",
"omegaconf",
"safetensors",
"requests",
"packaging",
"pandas",
"opencv-python",
"einops",
"timm",
"huggingface_hub",
"qwen-vl-utils",
"megfile",
"sentencepiece",
"deepspeed",
"fire",
"matplotlib",
"peft",
"trl==0.8.6",
"tensorboard",
"openai",
"av",
"regex",
]
[project.urls]
Homepage = "https://tiger-ai-lab.github.io/EditReward/"
Source = "https://github.com/TIGER-AI-Lab/EditReward"
Documentation = "https://github.com/TIGER-AI-Lab/EditReward/blob/main/README.md"
Paper = "https://arxiv.org/abs/2509.26346"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["EditReward*"]
namespaces = true
[tool.setuptools.package-data]
EditReward = [
"config/*.yaml",
"config/ds_config/*.json",
"evaluate/genaibench/templates/*/*.txt",
"evaluate/genaibench/mllm_tools/model_utils/otter/models/otter/*.json",
"evaluate/genaibench/mllm_tools/model_utils/otter/models/otter/utils/*.json",
"evaluate/genaibench/mllm_tools/model_utils/otter/models/flamingo/*.json",
"evaluate/genaibench/mllm_tools/model_utils/otter/models/flamingo/utils/*.json",
]