Skip to content

Commit 11471d8

Browse files
TensorFlow Recommenders AuthorsTensorFlow Recommenders Team
authored andcommitted
Prepare for releasing v0.5.2.
PiperOrigin-RevId: 385203234
1 parent b0fa907 commit 11471d8

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
# Changelog
22

3-
## [unreleased][unreleased]
3+
## [0.5.2][2021-07-15]
44

55
### Fixed
66

77
- Fixed error in default arguments to `tfrs.experimental.models.Ranking`
88
(https://github.com/tensorflow/recommenders/issues/311).
9+
- Fix TPUEmbedding layer to use named parameters.
910

1011
### Added
1112

1213
- Added `batch_metrics` to `tfrs.tasks.Retrieval` for measuring how good the
1314
model is at picking out the true candidate for a query from other candidates
1415
in the batch.
16+
- Added `tfrs.experimental.layers.embedding.PartialTPUEmbedding` layer, which
17+
uses `tfrs.layers.embedding.TPUEmbedding` for large embedding lookups and
18+
`tf.keras.layers.Embedding` for smaller embedding lookups.
1519

1620
## [0.5.1][2021-05-14]
1721

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
import pathlib
1818
import setuptools
1919

20-
VERSION = "0.5.1"
20+
VERSION = "0.5.2"
2121

2222
long_description = (pathlib.Path(__file__).parent
2323
.joinpath("README.md")

tensorflow_recommenders/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
you the flexibility to build complex models.
2222
"""
2323

24-
__version__ = "v0.5.1"
24+
__version__ = "v0.5.2"
2525

2626
from tensorflow_recommenders import examples
2727
from tensorflow_recommenders import experimental

0 commit comments

Comments
 (0)