From 59a4dfdb911d0570ba1096b7a0a7b9fc5c7844bf Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Fri, 17 Dec 2021 14:34:11 +0100 Subject: [PATCH] Bump version to 2.24.0 --- CHANGELOG.md | 14 ++++++++++++++ opennmt/version.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea6e6fad2..bdaf12f09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,20 @@ OpenNMT-tf follows [semantic versioning 2.0.0](https://semver.org/). The API cov ### Fixes and improvements +## [2.24.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.24.0) (2021-12-17) + +### New features + +* Add experimental parameter `mask_loss_outliers` to mask high loss values considered as outliers (requires the `tensorflow-probability` module) + +### Fixes and improvements + +* Fix TensorFlow Lite conversion for models using a `PositionEmbedder` layer +* Automatically pad the weights of linear layers to enable Tensor Cores in mixed precision training +* Correctly set the CTranslate2 options `alignment_layer` and `alignment_heads` when converting models using the attention reduction `AVERAGE_LAST_LAYER` +* Raise an error if a training dataset or annotation file has an unexpected size +* Warn about duplicated tokens when loading vocabularies + ## [2.23.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.23.0) (2021-11-15) ### Changes diff --git a/opennmt/version.py b/opennmt/version.py index a12c4efa0..95b383969 100644 --- a/opennmt/version.py +++ b/opennmt/version.py @@ -1,6 +1,6 @@ """OpenNMT-tf version.""" -__version__ = "2.23.0" +__version__ = "2.24.0" INCLUSIVE_MIN_TF_VERSION = "2.4.0" EXCLUSIVE_MAX_TF_VERSION = "2.8.0"