GalustBetkhemyan

Results 3 comments of GalustBetkhemyan

> @massquantity Hi, thanks for quick response. Currently I use DeepFM to recommend items to a user. The next problem is to have similar item for a specific item. In...

hi @massquantity , thanks for the answer. I noticed it. sort_topk_items argumen and return are inner_id-s that should be converted. Just one thing I am not sure is for public...

@massquantity yes to convert ids in the implementation is not a huge problem. What I use is ``` sim_items_inner = self.model.sort_topk_items(self.data_info.item2id.get(item_id, self.model.n_items)) sim_items = [self.data_info.id2item.get(i[0], self.model.n_items) for i in sim_items_inner]...