You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to understand the TwoTower implementation by walking through the source code, but I don't see where the build_model() function is being called. Also, I don't see self.serving_topk() being used anywhere either, only recommend_from_embedding and predict_from_embedding. Can this please be explained?
The text was updated successfully, but these errors were encountered:
Hi, The TwoTower class inherits from the DynEmbedBase class, which inherits from the EmbedBase class. The build_model method is called in the fit method of EmbedBase. self.serving_topk() is used in online serving. Specifically, it is used in the libserving module.
Hi,
I am trying to understand the TwoTower implementation by walking through the source code, but I don't see where the build_model() function is being called. Also, I don't see self.serving_topk() being used anywhere either, only recommend_from_embedding and predict_from_embedding. Can this please be explained?
The text was updated successfully, but these errors were encountered: