forked from TIGER-AI-Lab/VideoScore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
79 lines (78 loc) · 2.01 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='VideoScore',
version='0.0.1',
description='Official Codes for "VideoScore: Building Automatic Metrics to Simulate Fine-grained Human Feedback for Video Generation"',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Xuan He & Dongfu Jiang',
author_email='hexuan21@mails.tsinghua.edu.cn & dongfu.jiang@uwaterloo.ca',
packages=find_packages(),
url='https://github.com/jdf-prog/many-image-qa',
install_requires=[
"mantis-vl",
"transformers",
"torch",
"Pillow",
"accelerate",
"torchvision",
"datasets==2.18.0"
],
extras_require={
"train": [
"fire",
"tqdm",
"numpy",
"requests",
"matplotlib",
"transformers_stream_generator",
"tiktoken",
"chardet",
"deepspeed",
"peft>=0.10",
"bitsandbytes",
"wandb",
"ninja",
"scipy",
"webdataset",
"braceexpand",
"pandas",
"orjson",
"prettytable",
"pytest",
"opencv-python",
"pyarrow",
"dask",
"einops-exts",
"datasets==2.18.0",
"open_clip_torch",
"openai",
"av"
],
"eval": [
"torch",
"torchvision",
"datasets==2.18.0",
"transformers",
"huggingface-hub",
"mantis-vl",
"Pillow",
"azure-identity",
"tqdm",
"opencv-python",
"datetime",
"scikit-image",
"numpy==1.26.4",
"prettytable",
"scipy",
"regex",
"requests",
"pathlib",
"fire",
"openai",
"tiktoken",
"av",
"decord",
]
}
)