forked from yuchenlin/LLM-Blender
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·49 lines (48 loc) · 1.51 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
from setuptools import setup, find_packages
setup(
name='llm_blender',
version='0.0.2',
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='dongfu.jdf@gmail.com',
packages=find_packages(),
url='https://yuchenlin.xyz/LLM-Blender/',
install_requires=[
'transformers>=4.31.0',
'datasets',
'torch',
'wget',
'pycocoevalcap',
'spacy>=3.6.1', # Pin to fix installation and 3.6.1 for `pydantic` v2 support
'prettytable',
'fairscale',
'evaluate',
'bert_score',
'cpm_kernels',
'sentencepiece',
'fschat',
'numpy',
'tabulate',
'nltk',
'scipy',
'matplotlib',
'pandas',
'scikit-learn',
'protobuf<=3.20.1',
'wandb',
'sacrebleu',
'dataclasses-json',
'accelerate',
'safetensors',
'gradio',
'openai'
# 'bitsandbytes',
# 'openai',
# 'peft',
# 'BLEURT @ git+https://github.com/google-research/bleurt.git@cebe7e6f996b40910cfaa520a63db47807e3bf5c',
# 'deepspeed',
# 'rouge_score',
# 'deepspeed',
# 'absl-py',
],
)