File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1717import pathlib
1818import setuptools
1919
20- VERSION = "0.5.1 "
20+ VERSION = "0.5.2 "
2121
2222long_description = (pathlib .Path (__file__ ).parent
2323 .joinpath ("README.md" )
Original file line number Diff line number Diff line change 2121you the flexibility to build complex models.
2222"""
2323
24- __version__ = "v0.5.1 "
24+ __version__ = "v0.5.2 "
2525
2626from tensorflow_recommenders import examples
2727from tensorflow_recommenders import experimental
You can’t perform that action at this time.
0 commit comments