Skip to content

Commit 905d716

Browse files
Matthew FahrbachTensorFlow Recommenders Authors
authored andcommitted
Release TFRS v0.7.4 to push Unified Embedding layer and tutorial.
PiperOrigin-RevId: 828508927
1 parent 9c7a99b commit 905d716

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,18 @@
1717
import pathlib
1818
import 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

2626
setuptools.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",

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

2626
from tensorflow_recommenders import examples
2727
from tensorflow_recommenders import experimental

0 commit comments

Comments
 (0)