forked from xuanlinli17/autoregressive_inference
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (28 loc) · 1.03 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
from setuptools import find_packages
from setuptools import setup
REQUIRED_PACKAGES = ['tensorflow==2.3',
'tensorflow-probability==0.11.0',
'tensorflow_datasets',
'torch==1.4',
'torchvision==0.5.0',
'numpy',
'nltk',
'networkx',
'dm-tree',
'matplotlib',
'dataclasses',
'mosestokenizer',
'subword-nmt',
'seaborn',
'sacrebleu==1.4.14',
'vizseq']
PACKAGES = [package
for package in find_packages() if
package.startswith('voi')]
setup(name='voi',
version='0.1',
install_requires=REQUIRED_PACKAGES,
include_package_data=True,
packages=PACKAGES,
description='Discovering non-monotonic autoregressive orderings with variational inference.',
author='Xuanlin Li, Brandon Trabucco')