Skip to content

Commit a4a0e7c

Browse files
maciejkulaTensorFlow Recommenders Team
authored andcommitted
Prepare for the next release of TensorFlow Recommenders.
Includes several important bug fixes as well as the first experimental release of the pre-built ranking model. PiperOrigin-RevId: 372436083
1 parent 0e12bfb commit a4a0e7c

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
# Changelog
22

3-
## [Unreleased][unreleased]
3+
## [0.5.0][2021-05-06]
44

55
### Changed
66

77
- Fixed the bug in `tfrs.layers.loss.SamplingProbablityCorrection` that logits
8-
should substract the log of item probability.
9-
- `tfrs.experimental.models.RankingModel` can be used as DLRM like model with
10-
Dot Product feature interaction or DCN like model with Cross layer.
8+
should subtract the log of item probability.
119
- `tfrs.experimental.optimizers.CompositeOptimizer`: an optimizer that
1210
composes multiple individual optimizers which can be applied to different
1311
subsets of the model's variables.
1412
- `tfrs.layers.dcn.Cross` and `DotInteraction` layers have been moved to
1513
`tfrs.layers.feature_interaction` package.
1614

15+
## Added
16+
17+
- `tfrs.experimental.models.Ranking`, an experimental pre-built model for
18+
ranking tasks. Can be used as DLRM like model with Dot Product feature
19+
interaction or DCN like model with Cross layer.
20+
1721
## [0.4.0][2021-01-20]
1822

1923
### Added

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.4.0"
20+
VERSION = "0.5.0"
2121

2222
REQUIRED_PACKAGES = [
2323
"absl-py >= 0.1.6",

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.4.0"
24+
__version__ = "v0.5.0"
2525

2626
from tensorflow_recommenders import examples
2727
from tensorflow_recommenders import experimental

0 commit comments

Comments
 (0)