Neural-Collaborative-Filtering icon indicating copy to clipboard operation
Neural-Collaborative-Filtering copied to clipboard

pytorch version of NCF

Results 2 Neural-Collaborative-Filtering issues
Sort by recently updated
recently updated
newest added

Hello! I have a question to ask. I set the number of epochs to 200, and I initially thought that the overall trend of HR and NDCG would continuously increase...

class NeuMF(nn.Module): def __init__(self, args, num_users, num_items): ... def init_weight(self): ... def forward(self, user_indices, item_indices): user_embedding_mlp = self.embedding_user_mlp(user_indices) item_embedding_mlp = self.embedding_item_mlp(item_indices) user_embedding_mf = self.embedding_user_mf(user_indices) item_embedding_mf = self.embedding_item_mf(item_indices) mlp_vector = torch.cat([user_embedding_mlp,...