Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/OpenNMT/CTranslate2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Klein <guillaume.klein@systrangroup.com>2022-07-27 16:55:31 +0300
committerGuillaume Klein <guillaume.klein@systrangroup.com>2022-07-27 16:55:31 +0300
commitdbfdd4f127914e9c042336cea671eebd897ceffe (patch)
tree4aa8a7cee35ada72232ce0ea6d347f370b29d1d9
parent27d61820c4cfa25a5678035c22d9441d259ecdae (diff)
Bump version to 2.21.0v2.21.0
-rw-r--r--CHANGELOG.md18
-rw-r--r--python/ctranslate2/version.py2
2 files changed, 19 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c907e979..0a7ec76b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,24 @@
### Fixes and improvements
+## [v2.21.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.21.0) (2022-07-27)
+
+### New features
+
+* Support NLLB multilingual models via the Transformers converter
+* Support Pegasus summarization models via the Transformers converter
+
+### Fixes and improvements
+
+* Do not stop decoding when the EOS token is coming from the user input: this is required by some text generation models like `microsoft/DialoGPT` where EOS is used as a separator
+* Fix conversion error for language models trained with OpenNMT-py
+* Fix conversion of models that are not using bias terms in the multi-head attention
+* Fix data type error when enabling the translation options `return_alternatives` and `return_attention` with a `float16` model
+* Improve CPU performance of language models quantized to `int8`
+* Implement a new vectorized GELU operator on CPU
+* Raise a more explicit error when trying to convert a unsupported Fairseq model
+* Update pybind11 to 2.10.0
+
## [v2.20.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.20.0) (2022-07-06)
### New features
diff --git a/python/ctranslate2/version.py b/python/ctranslate2/version.py
index a27d3c6b..dde0d929 100644
--- a/python/ctranslate2/version.py
+++ b/python/ctranslate2/version.py
@@ -1,3 +1,3 @@
"""Version information."""
-__version__ = "2.20.0"
+__version__ = "2.21.0"