File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1717import pathlib
1818import setuptools
1919
20- VERSION = "0.4 .0"
20+ VERSION = "0.5 .0"
2121
2222REQUIRED_PACKAGES = [
2323 "absl-py >= 0.1.6" ,
Original file line number Diff line number Diff line change 2121you the flexibility to build complex models.
2222"""
2323
24- __version__ = "v0.4 .0"
24+ __version__ = "v0.5 .0"
2525
2626from tensorflow_recommenders import examples
2727from tensorflow_recommenders import experimental
You can’t perform that action at this time.
0 commit comments