mirror of
https://github.com/rsennrich/subword-nmt.git
synced 2024-11-22 23:30:16 +03:00
pypi repository
This commit is contained in:
parent
f61c957926
commit
bc6ec696e0
@ -8,7 +8,11 @@ on Neural Machine Translation with subword units (see below for reference).
|
||||
INSTALLATION
|
||||
------------
|
||||
|
||||
install via pip:
|
||||
install via pip (from PyPI):
|
||||
|
||||
pip install subword-nmt
|
||||
|
||||
install via pip (from Github):
|
||||
|
||||
pip install https://github.com/rsennrich/subword-nmt/archive/master.zip
|
||||
|
||||
|
6
setup.py
6
setup.py
@ -1,6 +1,6 @@
|
||||
from setuptools import setup, find_packages
|
||||
import unittest
|
||||
|
||||
import codecs
|
||||
|
||||
def test_suite():
|
||||
test_loader = unittest.TestLoader()
|
||||
@ -11,8 +11,10 @@ def test_suite():
|
||||
|
||||
setup(
|
||||
name='subword_nmt',
|
||||
version='0.3',
|
||||
version='0.3.1',
|
||||
description='Unsupervised Word Segmentation for Neural Machine Translation and Text Generation',
|
||||
long_description= (codecs.open("README.md", encoding='utf-8').read() +
|
||||
"\n\n" + codecs.open("CHANGELOG.md", encoding='utf-8').read()),
|
||||
url='https://github.com/rsennrich/subword-nmt',
|
||||
author='Rico Sennrich',
|
||||
license='MIT',
|
||||
|
Loading…
Reference in New Issue
Block a user