• About
  • Privacy Policy
  • Disclaimer
  • Contact
Soft Bliss Academy
No Result
View All Result
  • Home
  • Artificial Intelligence
  • Software Development
  • Machine Learning
  • Research & Academia
  • Startups
  • Home
  • Artificial Intelligence
  • Software Development
  • Machine Learning
  • Research & Academia
  • Startups
Soft Bliss Academy
No Result
View All Result
Home Software Development

Build and train a recommender system in 10 minutes using Keras and JAX

softbliss by softbliss
May 16, 2025
in Software Development
0
Build and train a recommender system in 10 minutes using Keras and JAX
0
SHARES
0
VIEWS
Share on FacebookShare on Twitter


Today, we are excited to announce the launch of Keras Recommenders, a new library that puts state-of-the-art recommendation techniques at your fingertips.

Power digital experiences with recommendation systems

Recommendation systems power many of the interactions you have with technology today. Open up any app on your phone and you’ll likely find yourself interacting with a recommendation model right away, from the homefeed on your go-to social media platform to video suggestions on YouTube to even the ads that pop up in your favorite game. As the world of AI continues to evolve, delivering personalized experiences is more important than ever. Large language models can’t do everything, and recommender systems are responsible for creating many top-tier digital experiences today.

To help developers create performant and accurate recommender systems, Keras Recommenders (KerasRS) contains a set of APIs with building blocks designed for tasks such as ranking and retrieval. For example, at Google, we use KerasRS to help power the feed in Google Play.

Install KerasRS with JAX, TensorFlow, or PyTorch

To get started, pip install the keras-rs package. Then set the backend to JAX (or TensorFlow or PyTorch). Now you are on your way to crafting your own state-of-the-art recommender system.

import os
os.environ["KERAS_BACKEND"] = "jax"

import keras
import keras_rs

class SequentialRetrievalModel(keras.Model):
    def __init__(self):
        self.query_model = keras.Sequential([
            keras.layers.Embedding(query_count, embed_dim),
            keras.layers.GRU(embed_dim),
        ])
        self.candidate_model = keras.layers.Embedding(candidate_count, embed_dim)
        self.retrieval = keras_rs.layers.BruteForceRetrieval(k=10)
        self.loss_fn = keras.losses.CategoricalCrossentropy(from_logits=True)

    def call(self, inputs):
        query_embeddings = self.query_model(inputs)
        predictions = self.retrieval(query_embeddings)
        return {"query_embeddings": query_embeddings, "predictions": predictions}

Python

In this example, we show a popular retrieval architecture in which we identify a set of candidate recommendations. KerasRS provides everything you need to implement this architecture, with specialized layers, losses, and metrics designed specifically for recommender tasks. You can also follow along in this colab notebook.

And of course, all these building blocks work with the standard Keras APIs of model.compile to build your model and model.fit to easily configure your training loop.

model.compile(
    loss=keras_rs.losses.PairwiseHingeLoss(),
    metrics=[keras_rs.metrics.NDCG(k=8, name="ndcg")],
    optimizer=keras.optimizers.Adagrad(learning_rate=3e-4),
)
model.fit(train_ds, validation_data=val_ds, epochs=5)

Python

In the coming months, we plan to release the keras_rs.layers.DistributedEmbedding class for leveraging SparseCore chips on TPU for doing large embedding lookups distributed across machines. Additionally, we will add popular model implementations to our library continuously, making it even easier to build state-of-the-art recommender systems.

Explore the KerasRS documentation and examples

We also want to highlight all the documentation we have for Keras Recommenders on our recently redesigned keras.io website. On keras.io/keras_rs, you can find starter examples involving the classic Deep and Cross Network (DCN) and two-tower embedding model that show the step-by-step processes for writing and training your first recommender. There are also more advanced tutorials, such as SASRec, showing an end-to-end example of training a transformer model.

Get started

Visit our website today for more examples, documentation, and guides to build your very own recommendation system. You can also browse the code and contribute at https://github.com/keras-team/keras-rs (feel free to give it a star ⭐ too while you’re there!).

We look forward to seeing all the excellent recommendation systems that get built with Keras Recommenders.


Acknowledgements

Shout-out to Fabien Hertschuh and Abheesht Sharma for building Keras Recommenders. We also want to thank the Keras and ML Frameworks teams as well as all our collaborators and leadership for helping us pull this off.

Tags: BuildJAXKerasMinutesrecommenderSystemtrain
Previous Post

The State of AI Security in 2025: Key Insights from the Cisco Report

Next Post

Set up a custom plugin on Amazon Q Business and authenticate with Amazon Cognito to interact with backend systems

softbliss

softbliss

Related Posts

A Guide for Choosing Between F# vs C#
Software Development

A Guide for Choosing Between F# vs C#

by softbliss
May 16, 2025
GitLab 18 integrates AI capabilities from Duo
Software Development

GitLab 18 integrates AI capabilities from Duo

by softbliss
May 15, 2025
Cosmos DB Disaster Recovery: Multi-Region Write Pitfalls
Software Development

Cosmos DB Disaster Recovery: Multi-Region Write Pitfalls

by softbliss
May 15, 2025
Software Development

Detect Caps Lock with JavaScript

by softbliss
May 14, 2025
Coding Assistants Threaten the Software Supply Chain
Software Development

Coding Assistants Threaten the Software Supply Chain

by softbliss
May 14, 2025
Next Post
Set up a custom plugin on Amazon Q Business and authenticate with Amazon Cognito to interact with backend systems

Set up a custom plugin on Amazon Q Business and authenticate with Amazon Cognito to interact with backend systems

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Premium Content

Build an intelligent community agent to revolutionize IT support with Amazon Q Business

Build an intelligent community agent to revolutionize IT support with Amazon Q Business

May 13, 2025
Why Professional Social Media Setup is Crucial for Your Brand’s Success

Why Professional Social Media Setup is Crucial for Your Brand’s Success

April 15, 2025
Resilience and Retractions: Supporting Science Minds

Resilience and Retractions: Supporting Science Minds

May 4, 2025

Browse by Category

  • Artificial Intelligence
  • Machine Learning
  • Research & Academia
  • Software Development
  • Startups

Browse by Tags

Amazon App Apr Artificial Berkeley BigML.com Blog Build Building Business Content Data Development Future Gemini Generative Google Guide Impact Innovation Intelligence Key Language Large Learning LLM LLMs Machine MIT Mobile model Models News NVIDIA Official opinion OReilly Research Startup Startups Strategies students Tech Tools Video

Soft Bliss Academy

Welcome to SoftBliss Academy, your go-to source for the latest news, insights, and resources on Artificial Intelligence (AI), Software Development, Machine Learning, Startups, and Research & Academia. We are passionate about exploring the ever-evolving world of technology and providing valuable content for developers, AI enthusiasts, entrepreneurs, and anyone interested in the future of innovation.

Categories

  • Artificial Intelligence
  • Machine Learning
  • Research & Academia
  • Software Development
  • Startups

Recent Posts

  • PRISMA Checklist Guide | Enago
  • German search engine Ecosia unveils new climate impact experience for users, shifting away from tree planting
  • Step-by-Step Guide to Using AI for Professional Logo Design

© 2025 https://softblissacademy.online/- All Rights Reserved

No Result
View All Result
  • Home
  • Artificial Intelligence
  • Software Development
  • Machine Learning
  • Research & Academia
  • Startups

© 2025 https://softblissacademy.online/- All Rights Reserved

Are you sure want to unlock this post?
Unlock left : 0
Are you sure want to cancel subscription?