i am new to mahout.
I have already used mahout's item based algorithm with a loglikelihood similarity measure. I read in past threads that it is better to use loglikelihood similarity when the recommender handles binary values (like or dislike). I also read that mahout uses three values (like, dislike, non exist ). So i get confused a little bit, about the format of the input dataset file.
Does the input file format have to be like this ?
userId, itemID
where the preference by default is 1?
I would like to know if there is a way to put the dislike info in the dataset.
I would except for example the input dataset file, be something like this :
userid, itemid, binaryPreference 1, 15, 1.0
2, 35, 0
1, 25, 1.0 ......
Help me please! Thanx in advance!