v0.7.2 -> v0.8.0 (#1017)

Summary:
Changelog:
- Relicensed under MIT license
- Add RoBERTa
- Add wav2vec
- Add WMT'19 models
- Add initial ASR code
- Changed torch.hub interface (`generate` renamed to `translate`)
- Add `--tokenizer` and `--bpe`
- f812e52: Renamed data.transforms -> data.encoders
- 654affc: New Dataset API (optional)
- `47fd985`: Deprecate old Masked LM components
- `5f78106`: Set mmap as default dataset format and infer format automatically
- Misc fixes for sampling
- Misc fixes to support PyTorch 1.2
Pull Request resolved: https://github.com/pytorch/fairseq/pull/1017

Differential Revision: D16799880

Pulled By: myleott

fbshipit-source-id: 45ad8bc531724a53063cbc24ca1c93f715cdc5a7
This commit is contained in:
Myle Ott 2019-08-14 05:00:05 -07:00 committed by Facebook Github Bot
parent 7c89e13f64
commit ffffe04ea1
3 changed files with 4 additions and 4 deletions

View File

@ -60,9 +60,9 @@ github_doc_root = 'https://github.com/pytorch/fairseq/tree/master/docs/'
# built documents.
#
# The short X.Y version.
version = '0.7.2'
version = '0.8.0'
# The full version, including alpha/beta/rc tags.
release = '0.7.2'
release = '0.8.0'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -4,7 +4,7 @@
# LICENSE file in the root directory of this source tree.
__all__ = ['pdb']
__version__ = '0.7.2'
__version__ = '0.8.0'
import fairseq.criterions # noqa
import fairseq.models # noqa

View File

@ -30,7 +30,7 @@ bleu = Extension(
setup(
name='fairseq',
version='0.7.2',
version='0.8.0',
description='Facebook AI Research Sequence-to-Sequence Toolkit',
url='https://github.com/pytorch/fairseq',
classifiers=[