From 5c4233d06617b91118ffd141b9e943920948102f Mon Sep 17 00:00:00 2001 From: Richard Stotz Date: Fri, 17 Nov 2023 08:02:48 -0800 Subject: [PATCH] Prepare release of TF-DF 1.8.1 and YDF 1.7.0 PiperOrigin-RevId: 583389146 --- CHANGELOG.md | 6 +++--- configure/setup.py | 2 +- tensorflow_decision_forests/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 606790f..7a973f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,11 @@ # Changelog -## HEAD +## 1.8.0 - 2023-11-17 ### Fix -Regression with Mean Squared Error loss and Mean Average error loss incorrectly -clamped the gradients, leading to incorrect predictions. +- Regression with Mean Squared Error loss and Mean Average error loss + incorrectly clamped the gradients, leading to incorrect predictions. ## 1.8.0 - 2023-11-15 diff --git a/configure/setup.py b/configure/setup.py index 57cf46c..2c52324 100644 --- a/configure/setup.py +++ b/configure/setup.py @@ -21,7 +21,7 @@ from setuptools.command.install import install from setuptools.dist import Distribution -_VERSION = "1.8.0" +_VERSION = "1.8.1" with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() diff --git a/tensorflow_decision_forests/__init__.py b/tensorflow_decision_forests/__init__.py index 0c33c66..c561f2e 100644 --- a/tensorflow_decision_forests/__init__.py +++ b/tensorflow_decision_forests/__init__.py @@ -51,7 +51,7 @@ """ -__version__ = "1.8.0" +__version__ = "1.8.1" __author__ = "Mathieu Guillame-Bert" compatible_tf_versions = ["2.15.0"]