Skip to content

Commit bd710e7

Browse files
Myle Ottfacebook-github-bot
Myle Ott
authored andcommitted
Summary: Notable (possibly breaking) changes: - d45db80: Remove checkpoint utility functions from utils.py into checkpoint_utils.py - f2563c2: Move LM definitions into separate files - dffb167: Updates to model API: - `FairseqModel` -> `FairseqEncoderDecoderModel` - add `FairseqDecoder.extract_features` and `FairseqDecoder.output_layer` - `encoder_out_dict` -> `encoder_out` - rm unused `remove_head` functions - 34726d5: Move `distributed_init` into `DistributedFairseqModel` - cf17068: Simplify distributed launch by automatically launching multiprocessing on each node for all visible GPUs (allows launching just one job per node instead of one per GPU) - d45db80: Change default LR scheduler from `reduce_lr_on_plateau` to `fixed` - 96ac28d: Rename `--sampling-temperature` -> `--temperature` - fc1a19a: Deprecate dummy batches - a1c997b: Add memory mapped datasets - 0add50c: Allow cycling over multiple datasets, where each one becomes an "epoch" Plus many additional features and bugfixes Pull Request resolved: facebookresearch#817 Differential Revision: D15913844 Pulled By: myleott fbshipit-source-id: d5b5d678efdd9dd3e4d7ca848ddcf1ec2b21bf6b
1 parent af9500d commit bd710e7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = '0.6.2'
63+
version = '0.7.0'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '0.6.2'
65+
release = '0.7.0'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

fairseq/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# can be found in the PATENTS file in the same directory.
77

88
__all__ = ['pdb']
9-
__version__ = '0.6.2'
9+
__version__ = '0.7.0'
1010

1111
import fairseq.criterions
1212
import fairseq.models

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
setup(
3131
name='fairseq',
32-
version='0.6.2',
32+
version='0.7.0',
3333
description='Facebook AI Research Sequence-to-Sequence Toolkit',
3434
url='https://github.com/pytorch/fairseq',
3535
classifiers=[

0 commit comments

Comments
 (0)