recommenders icon indicating copy to clipboard operation
recommenders copied to clipboard

TensorFlow Recommenders is a library for building recommender system models using TensorFlow.

Results 230 recommenders issues
Sort by recently updated
recently updated
newest added

In a recommendation system with retrieval and ranking stages, the retrieval model typically learns only from positive examples in the training dataset. Consequently, it fails to learn which items users...

Hello everyone, We are trying to integrate pre-trained BERT embedding into our TFRS model. Our model is based on the same definition as https://www.tensorflow.org/recommenders/examples/basic_retrieval. ```python class RetrievalUserModel(tf.keras.Model): def __init__(self: Self,...

Version mismatches in tensorflow , tensorflow_datasets, tensorflow_recommenders, scann and python. Impossible to find a combination that works. You get error messages about something wrong with builder.py in protobof. You upgrade...

It is an honor to have the opportunity to read your paper. In your paper, you mentioned that the gradient clipping application you proposed has a good effect on Adam....

The movie retrieval tutorial/notebook is broken due to a version conflict of the protobuf dependencies. https://github.com/tensorflow/recommenders/blob/main/docs/examples/basic_retrieval.ipynb Running the pip installs in the notebook (as well as in offline environments) yields...

Hello I see in this [tutorial](https://github.com/tensorflow/recommenders/blob/main/docs/examples/deep_recommenders.ipynb), there are separate classes for user model and query model. The same for the movie model and candidate model. Can you please explain what...

This question is very broad and theoretical so apologies for that! I would love to learn more about various loss functions which could be implemented in `tfrs` - when looking...

Hi, I read this blog recently https://cloud.google.com/blog/topics/developers-practitioners/building-large-scale-recommenders-using-cloud-tpus, very interested in it and wondering the raw performance of TPUEmbedding lookup performance.(we can quite easily get the perf data of tf.nn.(safe)embedding_lookup(_sparse) etc....

Hi, I'm following the tutorial "Building deep retrieval models" and seem to have encountered a slightly different, though related issue than either [this post](https://github.com/tensorflow/recommenders/issues/226) or this [other one](https://github.com/tensorflow/recommenders/issues/162) on this...

` class UserModel(tf.keras.Model): def __init__(self,use_timestamps,use_distance): super().__init__() self._use_timestamps = use_timestamps self._use_distance = use_distance self.user_embedding = tf.keras.Sequential([ tf.keras.layers.StringLookup( vocabulary=unique_user_ids, mask_token=None), tf.keras.layers.Embedding(len(unique_user_ids) + 1, 32) ]) max_tokens = 10_000 self.Preference1_embedding = tf.keras.Sequential([ tf.keras.layers.StringLookup(...