File tree Expand file tree Collapse file tree 3 files changed +14
-6
lines changed
Expand file tree Collapse file tree 3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 22
33## [ unreleased] [ unreleased ]
44
5+ ## [ 0.7.4] [ 2025-11-04 ]
6+
7+ ### Added
8+
9+ - Add ` tfrs.layers.feature_multiplexing.UnifiedEmbedding ` and tutorial.
10+
511## [ 0.7.3] [ 2023-02-02 ]
612
713### Changed
Original file line number Diff line number Diff line change 1717import pathlib
1818import setuptools
1919
20- VERSION = "0.7.3 "
20+ VERSION = "0.7.4 "
2121
22- long_description = (pathlib . Path ( __file__ ). parent
23- . joinpath ("README.md" )
24- . read_text () )
22+ long_description = (
23+ pathlib . Path ( __file__ ). parent . joinpath ("README.md" ). read_text ( )
24+ )
2525
2626setuptools .setup (
2727 name = "tensorflow-recommenders" ,
2828 version = VERSION ,
29- description = "Tensorflow Recommenders, a TensorFlow library for recommender systems." ,
29+ description = (
30+ "Tensorflow Recommenders, a TensorFlow library for recommender systems."
31+ ),
3032 long_description = long_description ,
3133 long_description_content_type = "text/markdown" ,
3234 url = "https://github.com/tensorflow/recommenders" ,
Original file line number Diff line number Diff line change 2121you the flexibility to build complex models.
2222"""
2323
24- __version__ = "v0.7.3 "
24+ __version__ = "v0.7.4 "
2525
2626from tensorflow_recommenders import examples
2727from tensorflow_recommenders import experimental
You can’t perform that action at this time.
0 commit comments