forked from lucidrains/self-rewarding-lm-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (38 loc) · 1.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
from setuptools import setup, find_packages
setup(
name = 'self-rewarding-lm-pytorch',
packages = find_packages(exclude=[]),
version = '0.2.12',
license='MIT',
description = 'Self Rewarding LM - Pytorch',
author = 'Phil Wang',
author_email = '[email protected]',
long_description_content_type = 'text/markdown',
url = 'https://github.com/lucidrains/self-rewarding-lm-pytorch',
keywords = [
'artificial intelligence',
'deep learning',
'self rewarding',
'direct preference optimization'
],
install_requires=[
'accelerate',
'beartype',
'einops>=0.7.0',
'einx[torch]>=0.1.3',
'ema-pytorch>=0.3.3',
'Jinja2',
'numpy',
'pytorch-custom-utils>=0.0.17',
'torch>=2.0',
'torchtyping',
'tqdm'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)