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-05-09 17:04:06 +0300
committerGuillaume Klein <guillaume.klein@systrangroup.com>2022-05-09 17:04:06 +0300
commite8fd9952cc0cf6afe7d0a2e38e59ee2747654631 (patch)
tree82ff2075cedb956e032b0a2f017b16a980790e94
parentcc27b78620586c9d273a8cdc60a0f4923317a91f (diff)
Bump version to 2.17.0v2.17.0
-rw-r--r--CHANGELOG.md19
-rw-r--r--python/ctranslate2/version.py2
2 files changed, 20 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2b93bf9f..e09c453c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,25 @@
### Fixes and improvements
+## [v2.17.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.17.0) (2022-05-09)
+
+### New features
+
+* Add a converter for Hugging Face's [Transformers](https://github.com/huggingface/transformers). The following models are currently supported:
+ * BART
+ * M2M100
+ * MarianMT
+ * MBART
+ * OpenAI GPT2
+* Revisit the OpenNMT-tf converter to better support custom models and configurations:
+ * Extend the conversion script to accept the training configuration
+ * Add a new converter class `ctranslate2.converters.OpenNMTTFConverterV2`
+* Move all documentation and guides to the [website](https://opennmt.net/CTranslate2) to improve navigation and clarity
+
+### Fixes and improvements
+
+* In text generation, include the start token in the output if it is not the BOS token
+
## [v2.16.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.16.0) (2022-04-28)
### New features
diff --git a/python/ctranslate2/version.py b/python/ctranslate2/version.py
index 0557084b..2987a834 100644
--- a/python/ctranslate2/version.py
+++ b/python/ctranslate2/version.py
@@ -1,3 +1,3 @@
"""Version information."""
-__version__ = "2.16.0"
+__version__ = "2.17.0"