kinglai
Results
2
comments of
kinglai
Only consider the cf part, is the code you released equal to NGCF model. Neural Graph Collaborative Filtering ?
It seems you're doing brute-force search. ```python doc_cls_reps = torch.load(os.path.join(args.doc_shard, 'cls_reps.pt')).float() ``` ...... ```python for batch_start in trange(0, len(all_query_offsets), batch_size, desc=shard_name): batch_q_reps = query_cls_reps[batch_start: batch_start + batch_size] match_scores = torch.matmul(batch_q_reps,...