From 11471d8f6b5d5c50f6f49cd38d3157540c17534b Mon Sep 17 00:00:00 2001 From: TensorFlow Recommenders Authors Date: Fri, 16 Jul 2021 12:42:01 -0700 Subject: [PATCH] Prepare for releasing v0.5.2. PiperOrigin-RevId: 385203234 --- CHANGELOG.md | 6 +++++- setup.py | 2 +- tensorflow_recommenders/__init__.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f205847c..bbc89bfa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,21 @@ # Changelog -## [unreleased][unreleased] +## [0.5.2][2021-07-15] ### Fixed - Fixed error in default arguments to `tfrs.experimental.models.Ranking` (https://github.com/tensorflow/recommenders/issues/311). +- Fix TPUEmbedding layer to use named parameters. ### Added - Added `batch_metrics` to `tfrs.tasks.Retrieval` for measuring how good the model is at picking out the true candidate for a query from other candidates in the batch. +- Added `tfrs.experimental.layers.embedding.PartialTPUEmbedding` layer, which + uses `tfrs.layers.embedding.TPUEmbedding` for large embedding lookups and + `tf.keras.layers.Embedding` for smaller embedding lookups. ## [0.5.1][2021-05-14] diff --git a/setup.py b/setup.py index e069d355..7c67d093 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ import pathlib import setuptools -VERSION = "0.5.1" +VERSION = "0.5.2" long_description = (pathlib.Path(__file__).parent .joinpath("README.md") diff --git a/tensorflow_recommenders/__init__.py b/tensorflow_recommenders/__init__.py index 8c41b570..1f210650 100644 --- a/tensorflow_recommenders/__init__.py +++ b/tensorflow_recommenders/__init__.py @@ -21,7 +21,7 @@ you the flexibility to build complex models. """ -__version__ = "v0.5.1" +__version__ = "v0.5.2" from tensorflow_recommenders import examples from tensorflow_recommenders import experimental