Skip to content

Commit

Permalink
Bump version to 2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Mar 16, 2022
1 parent 785eddc commit 3e2147b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@

### Fixes and improvements

## [v2.14.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.14.0) (2022-03-16)

### New features

* Include BART and MBART in the list of supported Fairseq architectures
* Add Fairseq converter option `--no_default_special_tokens` to require all special tokens to be set by the user during inference, including the decoder start tokens (for example, this is required by MBART-25 to properly set the language tokens)

### Fixes and improvements

* Fix conversion of Post-Norm Transformers trained with OpenNMT-tf
* Fix scoring with Fairseq models that used an incorrect decoder start token (Fairseq uses `</s>` as the decoder start token, not `<s>`)
* Fix scoring result to include the end of sentence token
* Ignore OpenNMT-py options `--alignment_layer` and `--alignment_heads` for models that are not trained with alignments
* Enable batch encoding in `return_alternatives` translation mode (the decoding still runs sequentially)
* Make enumerations `ctranslate2.specs.Activation` and `ctranslate2.specs.EmbeddingsMerge` public since they could be used to configure the Transformer specification
* Update oneDNN to 2.5.3
* Update cpu_features to 0.7.0
* Update cxxopts to 3.0.0
* Update spdlog to 1.9.2

## [v2.13.1](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.13.1) (2022-03-02)

### Fixes and improvements
Expand Down
2 changes: 1 addition & 1 deletion python/ctranslate2/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version information."""

__version__ = "2.13.1"
__version__ = "2.14.0"

0 comments on commit 3e2147b

Please sign in to comment.