Chris Pollett > Students >
Pham

    ( Print View)

    [Bio]

    [Blog]

    [CS 297 Proposal]

    [Initial mockup with API - PDF]

    [Deliverable 1]

    [Deliverable 2]

    [Deliverable 3]

    [Deliverable 4]

    [AI Component]

    [CS 297 Report - PDF]

    [CS 298 Proposal]

    [CS 298 Report - PDF]

    [CS 298 Slide Deck - PDF]

























Prepare AI Model to be Trained and Observed

Description:

This deliverable is for training sample dataset from Yelp using Bayesian Personalized Recommender. Unlike the usual approach that can be found in the Netflix Prize challenge in which the model is optimized to predict an element S in the list as 1 and 0 for the rest of the elements. BPR helps avoid the issue where the rest of the elements which will be ranked in the future are presented to the model as negative feedback (0 values). BPR proposes a different approach by using item pairs as training data and optimize for correctly ranking item pairs instead of scoring single items because the model would just replace the missing item with negative values. In order to do so, BPR uses training dataset which consists of both positive and negative pairs as well as missing values, but in this case the missing values between two non-observed items are exactly the item pairs that have to be ranked in the future. This makes the training data and the test data disjoint from each other.

Implementation:

1. Data is obtained from Yelp Challenge
2. Model is built on top of a library called OpenRec

Zip folder for AI model implementation: AI Model Implementation.zip