Home | About | Sematext search-lucene.com search-hadoop.com
 Search Lucene and all its subprojects:

Switch to Threaded View
Mahout, mail # user - Implicit feedback with varying significance


Copy link to this message
-
Re: Implicit feedback with varying significance
Sebastian Schelter 2011-03-20, 08:06
Thanks to everyone who answered my mail, very cool to get such valuable
feedback. It's great to see this mailinglist not only being used for
technical advice but also for helping and educating each other!

I don't have much time to experiment so I'd like to go with the easier
looking proposed solution of combining two recommenders. I'm more
interested in computing item-similarities than "real" recommendations,
so I thought I'd maybe use a simple combination of the scores for that
like this:

k = weight to choose
n = number of sales
f = n / (n + k)

(1 - f) * view_similarity + f * purchase_similarity
Does this seem to fit and does anyone have an idea how to find the right
k's here?
@Ted Thank you for giving me the bigger picture here, you're absolutely
right, the problem is actually about predicting the transition from
viewing to viewing plus buying behavior.

--sebastian

On 17.03.2011 18:10, Ted Dunning wrote:
> That is exactly what Sebastian suggested in his last paragraph.
>
> The answer is yes.  You could do that.  The problem is finding the weights.
>
> On Thu, Mar 17, 2011 at 3:42 AM, Ulises<[EMAIL PROTECTED]>  wrote:
>
>>> Does somebody have an idea (or better something learned from experience)
>> how
>>> to proceed to solve that problem?
>>
>> Could you not have two separate recommenders, one based on views and
>> one based on purchases and then combine their outputs using weights?
>>
>> U
>>
>