From faaef9b260b391806b9b59ec3e35babe358386b2 Mon Sep 17 00:00:00 2001 From: Richard Stotz Date: Fri, 17 Nov 2023 07:04:35 -0800 Subject: [PATCH] [YDF] Fix Squared error loss When using squared error loss, the leaf values were incorrectly clamped (by default to -5, 5). This clamping should not be the default. PiperOrigin-RevId: 583376180 --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e81d9c5..606790f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## HEAD + +### Fix + +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 ### Features