Does anyone knows which is the range of the scores that the model gives when you ask for a recommendation given a user id. This is what i refer:
# Get recommendations.
scores, titles = index(tf.constant(["42"]))
Does anyone knows which is the range of the scores that the model gives when you ask for a recommendation given a user id. This is what i refer:
# Get recommendations.
scores, titles = index(tf.constant(["42"]))
Gi @Hugo_2020, The score represents the similarity score of the recommended movies to the user’s preferences. The score does not have any fixed range, it is the value generated by doing the dot product of the user and movie embeddings. Thank You.
Thank you @Kiran_Sai_Ramineni .