Turi Create simplifies the development of custom machine learning models.
BSD 3-Clause "New" or "Revised" License
11.2k
stars
1.14k
forks
source link
item_similarity_recommender not consistent with docs formula #3425
Open
mats-claassen opened 3 years ago
Hi. The documentation for the
item_similarity_recommender
states that it computes predictions as:for cosine and jaccard similarities.
However, the library seems to compute the predictions as:
where
#Iu
is the number of ratings useru
has given. This would be the same as replacingSIM(i, j)
in the denominator of the original formula with1
.Could someone confirm this? Is it a documentation error?