NVIDIA / DeepRecommender

Deep learning for recommender systems
MIT License
1.69k stars 341 forks source link

Question about items not appearing in train set #15

Closed miguelgfierro closed 6 years ago

miguelgfierro commented 6 years ago

Hi @okuchaiev,

One question about the system. In the current implementation if an item does not appear in the training set, it is removed.

Is there other alternative to this? What would happen if we initialize the mappings with all train, validation and test set?

Thanks

okuchaiev commented 6 years ago

This is a cold-start problem. If the item or user wasn't seen before; the algorithm can not help at all. If we initialize mapping for training, valid and test with all items and all users, the items/user not seen in training examples, would just contain some random values (from initialization)

miguelgfierro commented 6 years ago

Thanks Oleksii