Member since
02-05-2014
8
Posts
0
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
4625 | 02-07-2014 01:21 PM |
06-14-2015
12:45 PM
1 Kudo
This concerns version 1.x by the way. The config elements in question are here: https://github.com/cloudera/oryx/blob/master/common/src/main/resources/reference.conf#L136
... View more
02-07-2014
01:32 PM
Nah, I've just heard this or a variant a few times now. Time to make a FAQ item... Thanks!
... View more
02-05-2014
05:59 AM
1 Kudo
That is correct. The only "problem" is that the model has no idea what these entities are. It doesn't care. Right now your recommendations might include both users and items. That might be useful! but usually it's not. Something has to filter them. So, that also means you need a way to distinguish user and item IDs. You can filter them on the caller side. Just ignore values you don't like and go back and ask for more recs if there are not enough. Or you can use RescorerProvider to inject the filtering logic onto the server side. That can be faster but is more work.
... View more