forked from yuchenlin/LLM-Blender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·41 lines (40 loc) · 1.26 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
from setuptools import setup, find_packages
setup(
name='llm_blender',
version='0.0.1',
description='LLM-Blender, an innovative ensembling framework to attain consistently superior performance by leveraging the diverse strengths and weaknesses of multiple open-source large language models (LLMs). LLM-Blender cut the weaknesses through ranking and integrate the strengths through fusing generation to enhance the capability of LLMs.',
author='Dongfu Jiang',
author_email='[email protected]',
packages=find_packages(),
url='https://yuchenlin.xyz/LLM-Blender/',
install_requires=[
'transformers',
'datasets',
'torch',
'accelerate',
'wget',
'pycocoevalcap',
'spacy',
'evaluate',
'bert_score',
'prettytable',
'fairscale',
'evaluate',
'bert_score',
'cpm_kernels',
'sentencepiece',
'fschat',
'openai',
'BLEURT @ git+https://github.com/google-research/bleurt.git@cebe7e6f996b40910cfaa520a63db47807e3bf5c',
'deepspeed',
'numpy',
'tabulate',
'nltk',
'rouge_score',
'scipy',
'matplotlib',
'pandas',
'scikit-learn',
'protobuf<=3.20.1'
],
)