-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (26 loc) · 959 Bytes
/
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
from setuptools import setup, find_packages
description = """
TIGERScore, a Trained metric that follows Instruction Guidance to perform Explainable, and Reference-free evaluation over a wide spectrum of text generation tasks.
Different from other automatic evaluation methods that only provide arcane scores, TIGERScore is guided by the natural language instruction to provide error analysis to pinpoint the mistakes in the generated text.
"""
setup(
name='tigerscore',
version='0.0.1',
description=description,
author='Dongfu Jiang',
author_email='[email protected]',
packages=find_packages(),
url='https://tiger-ai-lab.github.io/TIGERScore/',
install_requires=[
'torch',
'transformers',
'datasets',
'accelerate',
'gradio',
'tiktoken',
'llama-cpp-python',
'protobuf',
'sentencepiece',
'accelerate'
],
)