I'm using the algorithm UserUserItemScorer is possible to obtain the accuracy of recommendation, ie, the quality score of the recommended item. The only way I found was the value of "score". Is there another way besides the "score" method?
Accuracy of Recommendation for a User from Lenskit Recommender
156 views Asked by Lucas Pires At
1
There are 1 answers
Related Questions in RECOMMENDATION-ENGINE
- Issue in loading model in recommender system using streamlit
- predicting ROI for a recommendation system (campaign)
- Werkzeug issue:AttributeError: 'int' object has no attribute 'count'
- How to get final recommendations (Tensorflow Recommenders) with multiple features?
- Error Initializing FactorizedTopK in TensorFlow Recommenders on SageMaker: "Cannot convert 'counter' to a shape"
- Building recommender system based on user characteristics
- Dealing with Pearson Similarity returning 0 for users with equal item counts - Mahout
- Matrix Factorization with user and item regularization VS Probabilistic Matrix Factorization
- How to use personalization in Azure AI Search
- Content-Based Filtering for Tagged Posts
- Scala Spark Collaborative Filter
- AWS Personalize: How to Exclude Previously Viewed Items Temporarily by Dynamic Date Range?
- Why does KMeansClusterer from NLTK take a long time to execute with my user-item rating matrix?
- Memory Error while Generating User-Movie Combinations for Content-Based Recommender
- scikit-surprise pip installation with multiple errors/notes (e.g. errors from subprocess, absent from the `packages` configuration)
Related Questions in LENSKIT
- Exception in thread "main" java.lang.NoSuchMethodError in Lenskit for Java
- trouble using lenskit with conda
- LensKit Recommender only returns results for some users, otherwise returns empty DataFrame. Why is this happening?
- LensKit recommendation without rating
- Use lenskit to recommend for user not in dataset
- How to test only relevant items and remove popular items from test whit Crossfold in Lenskit 3.0-M2
- Lenskit: How to add ratings from arraylist to EvenCollectionDao?
- Connecting lenskit 3.0 data access model to jdbc
- How to prevent crossfold re-generation every iteration Lenskit 3.0-M2
- Lenskit error: recommender has no item recommender
- How do I add items with a score above x to goodItems for precision metric in Lenskit 3.0?
- How to add a new metric in Lenskit 3.0?
- Empty Train-Test files on CrossfoldTask
- What's the relationship between LensKit 3.0-SNAPSHOT and LensKit 3.0-T*?
- Learning to rank using Lenskit
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
[disclaimer: LensKit lead developer]
First, a terminology thing: in recommender systems, the score and the accuracy of the recommendation are very different things. The score is how relevant the recommender thinks the item is, and is the basis for doing recommendation; the accuracy of the recommendation is how well that score models the user's actual opinion of the item.
I'll move forward assuming that you're looking for ways to get the score for an item.
There are at least three ways:
scoreonItemScorerfor individual items. This is very slow for multiple items.scoreonItemScorerwith a batch of items. This is usually much faster. However, if you got the items from anItemRecommender, then you are probably repeating computations.ItemRecommenderreturns a list of ‘scored IDs’, which are item IDs associated with scores. ThegetScore()method on the item recommender will get the score for each item.But in general, the item scorer's score is exactly how you get relevance estimates from LensKit. The scores returned by an
ItemRecommenderare usually just the scores provided by the underlying item scorer.