项目作者: lium-lst

项目描述 :
Sequence-to-Sequence Framework in PyTorch
高级语言: Jupyter Notebook
项目地址: git://github.com/lium-lst/nmtpytorch.git
创建时间: 2017-12-18T10:07:19Z
项目社区:https://github.com/lium-lst/nmtpytorch

开源协议:Other

下载


nmtpytorch

License: MIT
Python 3.7

Note

This project is not actively maintained so issues created are unlikely to be addressed in a timely way. If you are interested, there’s a recent fork of this repository called pysimt which includes Transformer-based architectures as well.

Overview

nmtpytorch allows training of various end-to-end neural architectures including
but not limited to neural machine translation, image captioning and automatic
speech recognition systems. The initial codebase was in Theano and was
inspired from the famous dl4mt-tutorial
codebase.

nmtpytorch received valuable contributions from the Grounded Sequence-to-sequence Transduction Team
of Frederick Jelinek Memorial Summer Workshop 2018:

Loic Barrault, Ozan Caglayan, Amanda Duarte, Desmond Elliott, Spandana Gella, Nils Holzenberger,
Chirag Lala, Jasmine (Sun Jae) Lee, Jindřich Libovický, Pranava Madhyastha,
Florian Metze, Karl Mulligan, Alissa Ostapenko, Shruti Palaskar, Ramon Sanabria, Lucia Specia and Josiah Wang.

If you use nmtpytorch, you may want to cite the following paper:

  1. @article{nmtpy2017,
  2. author = {Ozan Caglayan and
  3. Mercedes Garc\'{i}a-Mart\'{i}nez and
  4. Adrien Bardet and
  5. Walid Aransa and
  6. Fethi Bougares and
  7. Lo\"{i}c Barrault},
  8. title = {NMTPY: A Flexible Toolkit for Advanced Neural Machine Translation Systems},
  9. journal = {Prague Bull. Math. Linguistics},
  10. volume = {109},
  11. pages = {15--28},
  12. year = {2017},
  13. url = {https://ufal.mff.cuni.cz/pbml/109/art-caglayan-et-al.pdf},
  14. doi = {10.1515/pralin-2017-0035},
  15. timestamp = {Tue, 12 Sep 2017 10:01:08 +0100}
  16. }

Installation

You may want to install NVIDIA’s Apex
extensions. As of February 2020, we only monkey-patched nn.LayerNorm
with Apex’ one if the library is installed and found.

pip

You can install nmtpytorch from PyPI using pip (or pip3 depending on your
operating system and environment):

  1. $ pip install nmtpytorch

conda

We provide an environment.yml file in the repository that you can use to create
a ready-to-use anaconda environment for nmtpytorch:

  1. $ conda update --all
  2. $ git clone https://github.com/lium-lst/nmtpytorch.git
  3. $ conda env create -f nmtpytorch/environment.yml

IMPORTANT: After installing nmtpytorch, you need to run nmtpy-install-extra
to download METEOR related files into your ${HOME}/.nmtpy folder.
This step is only required once.

Development Mode

For continuous development and testing, it is sufficient to run python setup.py develop
in the root folder of your GIT checkout. From now on, all modifications to the source
tree are directly taken into account without requiring reinstallation.

Documentation

We currently only provide some preliminary documentation in our wiki.

Release Notes

See NEWS.md.