Facebook AI Research Sequence-to-Sequence Toolkit written in Python.
Go to file
alexeib 9a1c49706b Make Hydra logging work with DDP (#1568)
Summary:
without this pr, when launching hydra based sweeps via "hydra_train.py", logging would only go to standard out/error files, rather than into "hydra_train.log" file. The problem is that the standard out/err files are placed in a different folder by submitit without a clear way to modify this behavior, while hydra_train.log is always empty (except when training on one gpu) because either a) reset_logging will remove hydra logging hooks, or b) hydra logging does not work properly with ddp based training.

to address a) we do not remove hydra logging by default (although it is optionally still possible)
to address b) we reconfigure the loggers in the train method which will be called by each spawned process

Pull Request resolved: https://github.com/fairinternal/fairseq-py/pull/1568

Reviewed By: myleott

Differential Revision: D25965658

Pulled By: alexeib

fbshipit-source-id: 77cbd4d310fe2d291fb1003c6a3e27e619d571aa
2021-01-20 20:42:42 -08:00
.github Support atomic saves for checkpoints (#1520) 2020-12-18 07:40:49 -08:00
docs Rename optimization.min_lr -> optimization.stop_min_lr (#1486) 2020-12-05 07:37:51 -08:00
examples migrate translation task (#1569) 2021-01-20 18:01:18 -08:00
fairseq Make Hydra logging work with DDP (#1568) 2021-01-20 20:42:42 -08:00
fairseq_cli Make Hydra logging work with DDP (#1568) 2021-01-20 20:42:42 -08:00
scripts Apply black+isort (#1357) 2020-10-18 18:14:51 -07:00
tests migrate translation task (#1569) 2021-01-20 18:01:18 -08:00
.gitignore Reproduce #1781. Add Weights and Biases support 2020-11-03 20:48:00 -08:00
.gitmodules Remove unused hf/transformers submodule (#1435) 2020-11-16 09:12:02 -08: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
hubconf.py Move dep checks before fairseq imports in hubconf.py (fixes #3093) (#3104) 2021-01-05 12:14:46 -08:00
LICENSE Relicense fairseq under MIT license (#786) 2019-07-30 07:48:23 -07:00
pyproject.toml fetch pyproject.toml for building cython codes without pre-installation (#1697) 2020-02-15 20:24:10 -08:00
README.md Better support for WandB (#1530) 2021-01-02 10:24:03 -08:00
setup.py fastseq ngram blocking (#1509) 2020-12-30 12:58:09 -08:00
train.py Apply black+isort (#1357) 2020-10-18 18:14:51 -07: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:

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.5.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 ./

# to install the latest stable release (0.10.1)
# pip install fairseq==0.10.1
  • 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},
}