The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here
"[SOLVED] Most Popular -Recommender Extension"
Concerning the recommender extension:
how is the most popular algorithm working? Where can I find a fine description of that (In the documentation is only said
Synopsis
Most-popular item recommender
Description
Items are weighted by how often they have been seen in the past.
thank you in advance
how is the most popular algorithm working? Where can I find a fine description of that (In the documentation is only said
Synopsis
Most-popular item recommender
Description
Items are weighted by how often they have been seen in the past.
thank you in advance
Tagged:
0
Answers
this is not an extension maintained by RapidMiner so I'm afraid I don't know the answer to that question.
Checking out the marketplace page for the extension leads to their website
You may find more information or contact possibilities there.
Regards,
Marco
Thank you a lot, I contacted the person who wrote the code for this algorithm in RapidMiner and everything was clear:
"the Most Popular algorithm is one of the "simple" recommendation algorithms in the extension. This algorithm stores view counts (how many times has this item been viewed from the users in the train set) for each item in the train set. When doing recommendation for a given user, it returns a view count for each item this user has not seen before and returns top-k items based on this count. "