Skip to content

Commit 3e2147b

Browse files
committed
Bump version to 2.14.0
1 parent 785eddc commit 3e2147b

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@
44

55
### Fixes and improvements
66

7+
## [v2.14.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.14.0) (2022-03-16)
8+
9+
### New features
10+
11+
* Include BART and MBART in the list of supported Fairseq architectures
12+
* 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)
13+
14+
### Fixes and improvements
15+
16+
* Fix conversion of Post-Norm Transformers trained with OpenNMT-tf
17+
* Fix scoring with Fairseq models that used an incorrect decoder start token (Fairseq uses `</s>` as the decoder start token, not `<s>`)
18+
* Fix scoring result to include the end of sentence token
19+
* Ignore OpenNMT-py options `--alignment_layer` and `--alignment_heads` for models that are not trained with alignments
20+
* Enable batch encoding in `return_alternatives` translation mode (the decoding still runs sequentially)
21+
* Make enumerations `ctranslate2.specs.Activation` and `ctranslate2.specs.EmbeddingsMerge` public since they could be used to configure the Transformer specification
22+
* Update oneDNN to 2.5.3
23+
* Update cpu_features to 0.7.0
24+
* Update cxxopts to 3.0.0
25+
* Update spdlog to 1.9.2
26+
727
## [v2.13.1](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.13.1) (2022-03-02)
828

929
### Fixes and improvements

python/ctranslate2/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version information."""
22

3-
__version__ = "2.13.1"
3+
__version__ = "2.14.0"

0 commit comments

Comments
 (0)