Facebook AI Research Sequence-to-Sequence Toolkit written in Python.
Go to file
Wei Ho ea092c2aa6 Split out fairseq GPU tests & add new deeplearning_fairseq_gpu contbuild using remote execution
Reviewed By: myleott

Differential Revision: D21472387

fbshipit-source-id: efde278baf6a05e8a81a9630b44c7e7e7c7fe7fc
2020-06-03 18:53:35 -07:00
.github fix Windows build (#1007) 2020-01-24 10:32:20 -08:00
docs add vq-wav2vec (#1029) 2020-02-29 18:25:34 -08:00
examples Miscellaneous fixes (#2193) 2020-05-28 07:29:59 -07:00
fairseq some fixes for model parallel roberta (#1182) 2020-06-03 14:07:46 -07:00
fairseq_cli Support multi-GPU validation in fairseq-validate (#2162) 2020-05-27 10:24:54 -07:00
scripts support manifold in average_checkpoint.py 2020-03-30 13:39:43 -07:00
tests Split out fairseq GPU tests & add new deeplearning_fairseq_gpu contbuild using remote execution 2020-06-03 18:53:35 -07:00
.gitignore REFACTOR: NAT Implementation (#925) 2019-12-03 18:39:28 -08:00
.gitmodules adding model parallel multihead attention module (#1088) 2020-03-17 17:50:51 -07:00
CODE_OF_CONDUCT.md Update CODE_OF_CONDUCT.md (#1759) 2020-03-04 14:05:25 -08:00
CONTRIBUTING.md Relicense fairseq under MIT license (#786) 2019-07-30 07:48:23 -07:00
eval_lm.py Fix binaries in root dir (#995) 2020-01-17 13:09:09 -08:00
fairseq_logo.png Fixes (#442) 2019-01-14 08:58:51 -08:00
fairseq.gif Initial commit 2017-09-14 17:22:43 -07:00
generate.py Fix binaries in root dir (#995) 2020-01-17 13:09:09 -08:00
hubconf.py Build Cython components when loading hub (#1386) 2019-11-17 17:43:49 -08:00
interactive.py Fix binaries in root dir (#995) 2020-01-17 13:09:09 -08:00
LICENSE Relicense fairseq under MIT license (#786) 2019-07-30 07:48:23 -07:00
preprocess.py Fix binaries in root dir (#995) 2020-01-17 13:09:09 -08:00
pyproject.toml fetch pyproject.toml for building cython codes without pre-installation (#1697) 2020-02-15 20:24:10 -08:00
README.md Several small fixes (incl. set default --data-buffer-size=10) (#2163) 2020-05-26 15:59:59 -07:00
score.py Fix binaries in root dir (#995) 2020-01-17 13:09:09 -08:00
setup.py Fix binaries in root dir (#995) 2020-01-17 13:09:09 -08:00
train.py Fix binaries in root dir (#995) 2020-01-17 13:09:09 -08:00
validate.py Fix binaries in root dir (#995) 2020-01-17 13:09:09 -08:00



MIT License Latest Release Build Status Documentation Status


Fairseq(-py) is a sequence modeling toolkit that allows researchers and developers to train custom models for translation, summarization, language modeling and other text generation tasks. We provide reference implementations of various sequence modeling papers:

List of implemented papers

What's New:

Previous updates

Features:

  • multi-GPU training on one machine or across multiple machines (data and model parallel)
  • fast generation on both CPU and GPU with multiple search algorithms implemented:
  • large mini-batch training even on a single GPU via delayed updates
  • mixed precision training (trains faster with less GPU memory on NVIDIA tensor cores)
  • extensible: easily register new models, criterions, tasks, optimizers and learning rate schedulers

We also provide pre-trained models for translation and language modeling with a convenient torch.hub interface:

en2de = torch.hub.load('pytorch/fairseq', 'transformer.wmt19.en-de.single_model')
en2de.translate('Hello world', beam=5)
# 'Hallo Welt'

See the PyTorch Hub tutorials for translation and RoBERTa for more examples.

Requirements and Installation

  • PyTorch version >= 1.4.0
  • Python version >= 3.6
  • For training new models, you'll also need an NVIDIA GPU and NCCL
  • To install fairseq and develop locally:
git clone https://github.com/pytorch/fairseq
cd fairseq
pip install --editable ./

# on MacOS:
# CFLAGS="-stdlib=libc++" pip install --editable ./
  • For faster training install NVIDIA's apex library:
git clone https://github.com/NVIDIA/apex
cd apex
pip install -v --no-cache-dir --global-option="--cpp_ext" --global-option="--cuda_ext" \
  --global-option="--deprecated_fused_adam" --global-option="--xentropy" \
  --global-option="--fast_multihead_attn" ./
  • For large datasets install PyArrow: pip install pyarrow
  • If you use Docker make sure to increase the shared memory size either with --ipc=host or --shm-size as command line options to nvidia-docker run.

Getting Started

The full documentation contains instructions for getting started, training new models and extending fairseq with new model types and tasks.

Pre-trained models and examples

We provide pre-trained models and pre-processed, binarized test sets for several tasks listed below, as well as example training and evaluation commands.

We also have more detailed READMEs to reproduce results from specific papers:

Join the fairseq community

License

fairseq(-py) is MIT-licensed. The license applies to the pre-trained models as well.

Citation

Please cite as:

@inproceedings{ott2019fairseq,
  title = {fairseq: A Fast, Extensible Toolkit for Sequence Modeling},
  author = {Myle Ott and Sergey Edunov and Alexei Baevski and Angela Fan and Sam Gross and Nathan Ng and David Grangier and Michael Auli},
  booktitle = {Proceedings of NAACL-HLT 2019: Demonstrations},
  year = {2019},
}