content based filtering

13
Content-based recommendation The requirement some information about the available items such as the genre ("content") some sort of user profile describing what the user likes (the preferences) Similarity” is computed from item attributes, e.g., Similarity of movies by actors, director, genre Similarity of text by words, topics Similarity of music by genre, year The task: learn user preferences locate/recommend items that are "similar" to the user preferences "show me more of the same what I've liked"

Upload: bendito-freitas-ribeiro

Post on 10-Dec-2014

244 views

Category:

Technology


2 download

DESCRIPTION

Content based filtering, with several techniques.

TRANSCRIPT

Page 1: Content based filtering

Content-based recommendation

The requirement some information about the available items such as the genre ("content") some sort of user profile describing what the user likes (the preferences)

• “Similarity” is computed from item attributes, e.g., • Similarity of movies by actors, director, genre • Similarity of text by words, topics • Similarity of music by genre, year

The task: learn user preferences locate/recommend items that are "similar" to the user preferences

"show me more of the same what I've liked"

Page 2: Content based filtering

• Most Content Based-recommendation techniques were applied to recommending text documents.• Like web pages or newsgroup messages for example.

• Content of items can also be represented as text documents.• With textual descriptions of their basic characteristics.• Structured: Each item is described by the same set of attributes

Title Genre Author Type Price Keywords

The Night of the Gun

Memoir David Carr Paperback 29.90 Press and journalism, drug addiction, personal memoirs, New York

The Lace Reader

Fiction, Mystery

Brunonia Barry Hardcover 49.90 American contemporary fiction, detective, historical

Into the Fire Romance, Suspense

Suzanne Brockmann

Hardcover 45.90 American fiction, murder, neo-Nazism

Page 3: Content based filtering

Item representation

Content representation and item similarities

• Approach• Compute the similarity of an unseen item with the user

profile based on the keyword overlap (e.g. using the Dice coefficient)

• Or use and combine multiple metrics

Title Genre Author Type Price Keywords

The Night of the Gun

Memoir David Carr Paperback 29.90 Press and journalism, drug addiction, personal memoirs, New York

The Lace Reader

Fiction, Mystery

Brunonia Barry Hardcover 49.90 American contemporary fiction, detective, historical

Into the Fire Romance, Suspense

Suzanne Brockmann

Hardcover 45.90 American fiction, murder, neo-Nazism

User profile

Title Genre Author Type Price Keywords

… Fiction Brunonia, Barry, Ken Follett

Paperback 25.65 Detective, murder, New York

𝟐×|𝒌𝒆𝒚𝒘𝒐𝒓𝒅𝒔 (𝒃𝒊 )∩𝒌𝒆𝒚𝒘𝒐𝒓𝒅𝒔 (𝒃 𝒋 )||𝒌𝒆𝒚𝒘𝒐𝒓𝒅𝒔 (𝒃𝒊 )|+|𝒌𝒆𝒚𝒘𝒐𝒓𝒅𝒔 (𝒃 𝒋 )|

describes Book with a set of keywords

Page 4: Content based filtering

Term-Frequency - Inverse Document Frequency ()

• Simple keyword representation has its problems • in particular when automatically extracted as

• not every word has similar importance• longer documents have a higher chance to have an overlap with the user profile

• Standard measure: TF-IDF• Encodes text documents in multi-dimensional Euclidian space

• weighted term vector• TF: Measures, how often a term appears (density in a document)

• assuming that important terms appear more often• normalization has to be done in order to take document length into account

• IDF: Aims to reduce the weight of terms that appear in all documents

Page 5: Content based filtering

• Given a keyword and a document

• term frequency of keyword in document

• inverse document frequency calculated as • : number of all recommendable documents• : number of documents from in which keyword appears

• • is calculated as: -

Term-Frequency - Inverse Document Frequency ()

Page 6: Content based filtering

Cosine similarity• Usual similarity metric to compare vectors: Cosine similarity (angle)

• Cosine similarity is calculated based on the angle between the vectors

• Adjusted cosine similarity• take average user ratings into account (), transform the original ratings• U: set of users who have rated both items a and b

Page 7: Content based filtering

An example for computing cosine similarity of annotations

To calculate cosine similarity between two texts t1 and t2, they are transformedin vectors as shown in the Table

Page 8: Content based filtering

Probabilistic methods

Page 9: Content based filtering

Calculation of probabilities in simplistic approach

Item1 Item2 Item3 Item4 Item5

Alice 1 3 3 2 ?

User1 2 4 2 2 4

User2 1 3 3 5 1

User3 4 5 2 3 3

User4 1 1 5 2 1

X = (Item1 =1, Item2=3, Item3= … )

Page 10: Content based filtering

Item1 Item5

Alice 2 ?

User1 1 2

Idea of Slope One predictors is simple and is based on a popularity differential between items for users

Example:

p(Alice, Item5) =

Basic scheme: Take the average of these differences of the co-ratings to make the prediction

In general: Find a function of the form f(x) = x + b

Slope One predictors

-

2 + ( 2 - 1 ) = 3

Page 11: Content based filtering

Relevant

Nonrelevant

• Most learning methods aim to find coefficients of a linear model

• A simplified classifier with only two dimensions can be represented by a line

Other linear classifiers:– Naive Bayes classifier, Rocchio method, Windrow-Hoff algorithm, Support vector machines

Linear classifiers

The line has the form – and correspond to the vector representation of a

document (using e.g. TF-IDF weights)– and are parameters to be learned– Classification of a document based on checking

In n-dimensional space the classification function is

Page 12: Content based filtering

– Mean Absolute Error (MAE) computes the deviation between predicted ratings and actual ratings

– Root Mean Square Error (RMSE) is similar to MAE, but places more emphasis on larger deviation

Metrics Measure Error rate

Page 13: Content based filtering

Next …

• Hybrid recommendation systems• More theories • Boolean and Vector Space

Retrieval Models• Clustering• Data mining• And so on