recommenders
recommenders copied to clipboard
TensorFlow Recommenders is a library for building recommender system models using TensorFlow.
Update featurization notebook: likley to likely
I am new to TensorFlow, in fact, I started exploring this library 2-3 weeks ago, because I am doing an internship where my project is a Recommender System. I could...
## codes `layers/loss.py` : change class name `SamplingProbablityCorrection` to `SamplingProbabilityCorrection` `layers/loss_test.py` : change class name `SamplingProbablityCorrection` to `SamplingProbabilityCorrection` for correct reference after the class name has been changed `tasks/retrieval.py` :...
I ran [this tutorial ](https://www.tensorflow.org/recommenders/examples/diststrat_retrieval) on google cloud compute engine. My instance has 2 GPUs(A100),and tensorflow recognizes my GPUs. ```python from tensorflow.python.client import device_lib device_lib.list_local_devices() [name: "/device:CPU:0" device_type: "CPU" memory_limit:...
Hi, I'm having problems trying to pass candidate_ids and candidate_sampling_probability Can someone please share some code on how to create these two tensors?
https://github.com/tensorflow/recommenders/blob/main/docs/examples/basic_retrieval.ipynb ``` # Export the query model. with tempfile.TemporaryDirectory() as tmp: path = os.path.join(tmp, "model") # Save the index. index.save(path) # Load it back; can also be done in TensorFlow...
Hello, In the tutorial https://www.tensorflow.org/recommenders/examples/dcn, we create multitple embedding layers of multiple rich features in the DCN model. I am wondering how to predict in the retrieval task using cross...
The tutorial example illustrates how we recommend movies given to users. I have two follow-up questions regarding when this algorithm scale-up: 1. What if the number of users increases to...
Hi all, **Context:** I'm using Tensorflow Recommender to recommend SKUs to Users depending on the purchase History. To divide the train and the test set I have used the date...