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

github.com/OpenNMT/OpenNMT-tf.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Klein <guillaume.klein@systrangroup.com>2022-02-21 13:03:07 +0300
committerGuillaume Klein <guillaume.klein@systrangroup.com>2022-02-21 13:03:07 +0300
commit55b16c3c8a011dac356e0d099f5b70dead92d312 (patch)
tree3aa577e6fe276f5f04b4731901bd06c44030a72d
parenta0e570f610f235c6b6c83ccf358fc8f7cfb67d9e (diff)
Bump version to 2.25.0v2.25.0
-rw-r--r--CHANGELOG.md13
-rw-r--r--opennmt/version.py2
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bdaf12f0..7d5d6096 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -15,6 +15,19 @@ OpenNMT-tf follows [semantic versioning 2.0.0](https://semver.org/). The API cov
### Fixes and improvements
+## [2.25.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.25.0) (2022-02-21)
+
+### New features
+
+* Support TensorFlow 2.8
+* Add training flag `--continue_from_checkpoint` to simplify continuing the training in another model directory (to be used in combination with `--checkpoint_path`)
+
+### Fixes and improvements
+
+* Fix target unknowns replacement when the source has BOS or EOS tokens
+* Update length constraints in Transformer automatic configuration to work with multiple sources
+* Allow explicit configuration of the first argument of learning rate schedules (if not set, `learning_rate` is passed as the first argument)
+
## [2.24.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.24.0) (2021-12-17)
### New features
diff --git a/opennmt/version.py b/opennmt/version.py
index 5e7b1dc3..669028f1 100644
--- a/opennmt/version.py
+++ b/opennmt/version.py
@@ -1,6 +1,6 @@
"""OpenNMT-tf version."""
-__version__ = "2.24.0"
+__version__ = "2.25.0"
INCLUSIVE_MIN_TF_VERSION = "2.4.0"
EXCLUSIVE_MAX_TF_VERSION = "2.9.0"