Multi-Feature Discrete Collaborative Filtering for Fast Cold-Start Recommendation

Total Page:16

File Type:pdf, Size:1020Kb

Multi-Feature Discrete Collaborative Filtering for Fast Cold-Start Recommendation The Thirty-Fourth AAAI Conference on Artificial Intelligence (AAAI-20) Multi-Feature Discrete Collaborative Filtering for Fast Cold-Start Recommendation Yang Xu,1 Lei Zhu,1∗ Zhiyong Cheng,2 Jingjing Li,3 Jiande Sun1 1Shandong Normal University 2Shandong Computer Science Center (National Supercomputer Center in Jinan) 2Qilu University of Technology (Shandong Academy of Sciences) 3University of Electronic Science and Technology of China [email protected] Abstract tween their latent features. However, the time complexity for generating top-k items recommendation for all users is Hashing is an effective technique to address the large- O(nmr + nm log k) (Zhang, Lian, and Yang 2017). There- scale recommendation problem, due to its high computation and storage efficiency on calculating the user preferences fore, MF-based methods are often computational expensive on items. However, existing hashing-based recommendation and inefficient when handling the large-scale recommenda- methods still suffer from two important problems: 1) Their tion applications (Cheng et al. 2018; 2019). recommendation process mainly relies on the user-item in- Recent studies show that the hashing-based recommen- teractions and single specific content feature. When the in- dation algorithms, which encode both users and items into teraction history or the content feature is unavailable (the binary codes in Hamming space, are promising to tackle cold-start problem), their performance will be seriously de- teriorated. 2) Existing methods learn the hash codes with re- the efficiency challenge (Zhang et al. 2016; 2014). In these laxed optimization or adopt discrete coordinate descent to methods, the preference score could be efficiently computed directly solve binary hash codes, which results in signifi- by Hamming distance. However, learning binary codes is cant quantization loss or consumes considerable computation generally NP-hard (Hastad˚ 2001) due to the discrete con- time. In this paper, we propose a fast cold-start recommenda- straints. To tackle this problem, the researchers resort to a tion method, called Multi-Feature Discrete Collaborative Fil- two-stage hash learning procedure (Liu et al. 2014; Zhang tering (MFDCF), to solve these problems. Specifically, a low- et al. 2014): relaxed optimization and binary quantization. rank self-weighted multi-feature fusion module is designed Continuous representations are first computed by the relaxed to adaptively project the multiple content features into binary optimization, and subsequently the hash codes are generated yet informative hash codes by fully exploiting their comple- by binary quantization. This learning strategy indeed simpli- mentarity. Additionally, we develop a fast discrete optimiza- tion algorithm to directly compute the binary hash codes with fies the optimization challenge. However, it inevitably suf- simple operations. Experiments on two public recommenda- fers from significant quantization loss according to (Zhang tion datasets demonstrate that MFDCF outperforms the state- et al. 2016). Hence, several solutions are developed to di- of-the-arts on various aspects. rectly optimizing the binary hash codes from the matrix fac- torization with discrete constraints. Despite much progress has been achieved, they still suffer from two problems: 1) Introduction Their recommendation process mainly relies on the user- With the development of online applications, recommender item interactions and single specific content feature. Under systems have been widely adopted by many online services such circumstances, they cannot provide meaningful recom- for helping their users find desirable items. However, it is mendations for new users (e.g. for the new users who have still challenging to accurately and efficiently match items no interaction history with the items). 2) They learn the hash to their potential users, particularly with the ever-growing codes with Discrete Coordinate Descent (DCD) that learns scales of items and users (Batmaz et al. 2019). the hash codes bit-by-bit, which results in significant quan- In the past, Collaborative Filtering (CF), as exemplified tization loss or consumes considerable computation time. by Matrix Factorization (MF) algorithms (Koren, Bell, and In this paper, we propose a fast cold-start recommendation Volinsky 2009) have demonstrated great successes in both × method, called Multi-Feature Discrete Collaborative Filter- academia and industry. MF factorizes an n m user-item ing (MFDCF) to alleviate these problems. Specifically, we rating matrix to project both users and items into a r- propose a low-rank self-weighted multi-feature fusion mod- dimensional latent feature space, where the user’s prefer- ule to adaptively preserve the multiple content features of ence scores for items are predicted by the inner product be- users into the compact yet informative hash codes by suffi- ∗The corresponding author ciently exploiting their complementarity. Our method is in- Copyright c 2020, Association for the Advancement of Artificial spired by the success of the multiple feature fusion in other Intelligence (www.aaai.org). All rights reserved. relevant areas (Wang et al. 2018; 2012; Lu et al. 2019a; 270 Zhu et al. 2017a). Further, we develop an efficient discrete applies Deep Belief Network (DBN) to extract item repre- optimization approach to directly solve binary hash codes sentation from item content information, and combines the by simple efficient operations without quantization errors. DBN with DCF. Discrete content-aware matrix factorization Finally, we evaluate the proposed method on two public rec- methods (Lian et al. 2017; Lian, Xie, and Chen 2019) de- ommendation datasets, and demonstrate its superior perfor- velop discrete optimization algorithms to learn binary codes mance over state-of-the-art competing baselines. for users and items at the presence of their respective content The main contributions of this paper are summarized as information. Discrete Factorization Machines (DFM) (Liu et follows: al. 2018) learns hash codes for any side feature and models the pair-wise interactions between feature codes. Besides, • We propose a Multi-Feature Discrete Collaborative Fil- since the above binary cold-start recommendation frame- tering (MFDCF) method to alleviate the cold-start rec- works solve the hash codes with bit-by-bit discrete optimiza- ommendation problem. MFDCF directly and adaptively tion, they still consumes considerable computation time. projects the multiple content features of users into binary hash codes by sufficiently exploiting their complementar- ity. To the best of our knowledge, there is still no similar The Proposed Method work. Notations. Throughout this paper, we utilize bold lowercase letters to represent vectors and bold uppercase letters to rep- • We develop an efficient discrete optimization strategy to resent matrices. All of the vectors in this paper denote col- directly learn the binary hash codes without relaxed quan- umn vectors. Non-bold letters represent scalars. We denote tization. This strategy avoids performance penalties from tr(·) as the trace of a matrix and ·F as the Frobenius norm both the widely adopted discrete coordinate descent and of a matrix. We denote sgn(·):R →±1 as the round-off the storage cost of huge interaction matrix. function. • We design a feature-adaptive hash code generation strat- egy to generate user hash codes that accurately capture Low-rank Self-weighted Multi-Feature Fusion the dynamic variations of cold-start user features. Exper- n Given a training dataset O = oi|i=1, which contains n iments on the public recommendation datasets demon- user’s multiple features information represented with M dif- strate the superior performance of the proposed method ferent content features (e.g. demographic information such over the state-of-the-arts. as age, gender, occupation, and interaction preference ex- tracted from item side information). The m-th content fea- (m) (m) (m) dm×n Related Work ture is X =[x1 , ..., xn ] ∈ R , where dm is the In this paper, we investigate the hashing-based collabora- dimensionality of the m-th content feature. Since the user’s tive filtering at the presence of multiple content features for multiple content features are quite diverse and heteroge- fast cold-start recommendation. Hence, in this section, we neous, in this paper, we aim at adaptively mapping multiple (m) M mainly review the recent advanced hashing-based recom- content features X |m=1 into a consensus multi-feature mendation and cold-start recommendation methods. representation H ∈ Rr×n (r is the hash code length) in a A pioneer work, (Das et al. 2007) is proposed to exploit shared homogeneous space. Specifically, it is important to Locality-Sensitive Hashing (LSH) (Gionis, Indyk, and Mot- consider the complementarity of multiple content features wani 1999) to generate hash codes for Google new read- and the generalization ability of the fusion module. Moti- ers based on their item-sharing history similarity. Based on vated by these considerations, we introduce a self-weighted this, (Karatzoglou, Smola, and Weimer 2010; Zhou and Zha fusion strategy and then formulate the multi-feature fusion 2012) followed the idea of Iterative Quantization (Gong part as: et al. 2013) to project real latent representations into hash M codes. To enhance discriminative capability of hash codes, (m) (m) min ||H − W X ||F (1) de-correlation constraint (Liu et al. 2014) and Constant Fea- W(m),H ture Norm (CFN) constraint (Zhang et al. 2014) are im- m=1 (m)
Recommended publications
  • EFFICIENT RETRIEVAL of MATRIX FACTORIZATION-BASED TOP-K RECOMMENDATIONS
    Journal of Artificial Intelligence Research 70 (2021) 1441-1479 Submitted 09/2020; published 04/2021 Efficient Retrieval of Matrix Factorization-Based Top-k Recommendations: A Survey of Recent Approaches Dung D. Le [email protected] Hady W. Lauw [email protected] School of Computing and Information Systems Singapore Management University 80 Stamford Road, Singapore 178902 Abstract Top-k recommendation seeks to deliver a personalized list of k items to each individual user. An established methodology in the literature based on matrix factorization (MF), which usually represents users and items as vectors in low-dimensional space, is an effective approach to rec- ommender systems, thanks to its superior performance in terms of recommendation quality and scalability. A typical matrix factorization recommender system has two main phases: preference elicitation and recommendation retrieval. The former analyzes user-generated data to learn user preferences and item characteristics in the form of latent feature vectors, whereas the latter ranks the candidate items based on the learnt vectors and returns the top-k items from the ranked list. For preference elicitation, there have been numerous works to build accurate MF-based recommen- dation algorithms that can learn from large datasets. However, for the recommendation retrieval phase, naively scanning a large number of items to identify the few most relevant ones may inhibit truly real-time applications. In this work, we survey recent advances and state-of-the-art approaches in the literature that enable fast and accurate retrieval for MF-based personalized recommenda- tions. Also, we include analytical discussions of approaches along different dimensions to provide the readers with a more comprehensive understanding of the surveyed works.
    [Show full text]
  • Scalable Similarity-Based Neighborhood Methods with Mapreduce
    Scalable Similarity-Based Neighborhood Methods with MapReduce Sebastian Schelter Christoph Boden Volker Markl Technische Universität Berlin, Germany fi[email protected] ABSTRACT sons it is often undesirable to execute these offline compu- Similarity-based neighborhood methods, a simple and popu- tations on a single machine: this machine might fail and lar approach to collaborative filtering, infer their predictions with growing data sizes constant hardware upgrades might by finding users with similar taste or items that have been be necessary to improve the machine's performance to meet similarly rated. If the number of users grows to millions, the time constraints. Due to these disadvantages, a single the standard approach of sequentially examining each item machine solution can quickly become expensive and hard to and looking at all interacting users does not scale. To solve operate. this problem, we develop a MapReduce algorithm for the In order to solve this problem, recent advances in large pairwise item comparison and top-N recommendation prob- scale data processing propose to run data-intensive, analyt- lem that scales linearly with respect to a growing number ical computations in a parallel and fault-tolerant manner of users. This parallel algorithm is able to work on parti- on a large number of commodity machines. Doing so will tioned data and is general in that it supports a wide range make the execution independent of single machine failures of similarity measures. We evaluate our algorithm on a large and will furthermore allow the increase of computational dataset consisting of 700 million song ratings from Yahoo! performance by simply adding more machines to the cluster, Music.
    [Show full text]
  • Music Similarity: Learning Algorithms and Applications
    UNIVERSITY OF CALIFORNIA, SAN DIEGO More like this: machine learning approaches to music similarity A dissertation submitted in partial satisfaction of the requirements for the degree Doctor of Philosophy in Computer Science by Brian McFee Committee in charge: Professor Sanjoy Dasgupta, Co-Chair Professor Gert Lanckriet, Co-Chair Professor Serge Belongie Professor Lawrence Saul Professor Nuno Vasconcelos 2012 Copyright Brian McFee, 2012 All rights reserved. The dissertation of Brian McFee is approved, and it is ac- ceptable in quality and form for publication on microfilm and electronically: Co-Chair Co-Chair University of California, San Diego 2012 iii DEDICATION To my parents. Thanks for the genes, and everything since. iv EPIGRAPH I’m gonna hear my favorite song, if it takes all night.1 Frank Black, “If It Takes All Night.” 1Clearly, the author is lamenting the inefficiencies of broadcast radio programming. v TABLE OF CONTENTS Signature Page................................... iii Dedication...................................... iv Epigraph.......................................v Table of Contents.................................. vi List of Figures....................................x List of Tables.................................... xi Acknowledgements................................. xii Vita......................................... xiv Abstract of the Dissertation............................. xvi Chapter 1 Introduction.............................1 1.1 Music information retrieval..................1 1.2 Summary of contributions..................1
    [Show full text]
  • Learning Binary Codes for Efficient Large-Scale Music Similarity Search
    LEARNING BINARY CODES FOR EFFICIENT LARGE-SCALE MUSIC SIMILARITY SEARCH Jan Schluter¨ Austrian Research Institute for Artificial Intelligence, Vienna [email protected] ABSTRACT Compared to existing work on approximate k-NN search, what makes this quest special is the nature of state-of-the- Content-based music similarity estimation provides a art music similarity measures, and a low upper bound on way to find songs in the unpopular “long tail” of com- database sizes: The largest online music store only offers mercial catalogs. However, state-of-the-art music similar- 26 million songs as of February 2013, while web-scale im- ity measures are too slow to apply to large databases, as age or document retrieval needs to handle billions of items. they are based on finding nearest neighbors among very Among the first approaches to fast k-NN search were high-dimensional or non-vector song representations that space partitioning trees [1]. McFee et al. [12] use an ex- are difficult to index. tension of k-d trees on 890,000 songs, reporting a 120 fold In this work, we adopt recent machine learning methods speedup over a full scan when missing 80% of true neigh- to map such song representations to binary codes. A lin- bors. No comparison to other methods is given. ear scan over the codes quickly finds a small set of likely Hash-based methods promise cheap lookup costs. Cai neighbors for a query to be refined with the original expen- et al. [2] apply Locality-Sensitive Hashing (LSH) [6] to sive similarity measure.
    [Show full text]
  • Collaborative Filtering with Binary, Positive-Only Data
    Collaborative Filtering with Binary, Positive-only Data Proefschrift voorgelegd tot het behalen van de graad van Doctor in de Wetenschappen: Informatica aan de Universiteit Antwerpen te verdedigen door Koen VERSTREPEN Promotor: prof. dr. Bart Goethals Antwerpen, 2015 Collaborative Filtering with Binary, Positive-only Data Nederlandse titel: Collaborative Filtering met Binaire, Positieve Data Copyright © 2015 by Koen Verstrepen Acknowledgements Arriving at this point, defending my doctoral thesis, was not obvious. Not for myself, but even more so for the other people involved. First of all Kim, my wife. She must have thought that I lost my mind, giving up my old career to start a PhD in computer science. Nevertheless, she trusted me and supported me fully. Furthermore, she did not complain once about my multiple trips to conferences, which always implied that she had to take care of our son on her own for a week. I am infinitely grateful to her. Also Bart, my advisor, took a leap of faith when he hired me. I was not one of his summa cum laude master students destined to become an academic star. Instead, I was an unknown engineer that had left university already four years before. Fortunately, I somehow managed to convince him we would arrive at this point rather soon than late. It was no obvious decision for him, and I am grateful for the opportunity he gave me. Starting a PhD was one of the best decisions in my life. I enjoyed every minute of it. Not the least because of the wonderful colleagues I had throughout the years.
    [Show full text]
  • Hybrid Recommender Vae Tensorflow Implementation of Movielens
    Hybrid Recommender Vae Tensorflow Implementation Of Movielens standoffishlyFlabby Nathanial when copy geoponic inimically Rusty or mutualisedouttravel vendibly sinisterly and when overpress Bartie heris scarred. sib. Spenser Anatollo outweary often vesiculated positively. While grid search engine results are implementation of recommender systems operate over the hybrid recommender vae tensorflow implementation of movielens database benchmarking results in. Our implementation in recommender strategy gradient values at a hybrid recommender vae tensorflow implementation of movielens database. The model with the of recommender systems where managers require significantly reduce. Such recommender systems that do compressed sparse areas with vae that consider a hybrid analysis contain two hybrid recommender vae tensorflow implementation of movielens database? Along with vae variant, kotthoff et al operates directly modeling for hybrid recommender vae tensorflow implementation of movielens database? These are signiﬕcant differences concerning its control problems and vae architecture rests on movielens datasets, transparency into how certain business intelligent machines and hybrid recommender vae tensorflow implementation of movielens database that aacs is marked, projection allows parallel. Ibas schemes that could be seen countless folders and hybrid recommender vae tensorflow implementation of movielens datasets. In the shattered gradients of tensorflow object detector and generate. Our algorithm will halt if you to? Intuitive graphical structure your browser while tolerating a hybrid recommender vae tensorflow implementation of movielens database opens the implementation. We will be of hybrid recommender systems. Experimentally, the lowest deviation to input perturbations, prior labels about the anomalousness of data points are plenty available. Maximum value point outside regions were requested by sustainability, extrapolation of hybrid recommender vae tensorflow implementation of movielens datasets also like an adaptation of exactly.
    [Show full text]
  • Collaborative Hashing
    Collaborative Hashing Xianglong Liuy Junfeng Hez Cheng Deng\ Bo Langy yState Key Lab of Software Development Environment, Beihang University, Beijing, China zFacebook, 1601 Willow Rd, Menlo Park, CA, USA \Xidian University, Xi’an, China fxlliu, [email protected] [email protected] [email protected] Abstract binary codes by exploiting the data correlations among the data entities (e.g., the cosine similarities between Hashing technique has become a promising approach for feature vectors). In practice, there are many scenarios fast similarity search. Most of existing hashing research involving nearest neighbor search on the data matrix with pursue the binary codes for the same type of entities by two dimensions corresponding to two different coupled preserving their similarities. In practice, there are many views or entities. For instance, the classic textual retrieval scenarios involving nearest neighbor search on the data usually works based on the term-document matrix with given in matrix form, where two different types of, yet each element representing the correlations between two naturally associated entities respectively correspond to its views: words and documents. Recently, such bag-of- two dimensions or views. To fully explore the duality words (BoW) model has also been widely used in computer between the two views, we propose a collaborative hashing vision and multimedia retrieval, which mainly captures the scheme for the data in matrix form to enable fast search correlations between local features (even the dictionaries in various applications such as image search using bag of using sparse coding) and visual objects [16, 17]. Besides words and recommendation using user-item ratings.
    [Show full text]
  • Recommendation Systems
    Recommendation Systems CS 534: Machine Learning Slides adapted from Alex Smola, Jure Leskovec, Anand Rajaraman, Jeff Ullman, Lester Mackey, Dietmar Jannach, and Gerhard Friedrich Recommender Systems (RecSys) Search Recommendations Items Products, web sites, blogs, news items, … CS 534 [Spring 2017] - Ho RecSys is Everywhere System that provides or suggests items to the end users CS 534 [Spring 2017] - Ho Long Tail Phenomenon Source: Chris Anderson (2004) CS 534 [Spring 2017] - Ho Physical vs Online Presence CS 534 [Spring 2017] - Ho RecSys: Tasks Task 1: Predict user rating Task 2: Top N recommendation CS 534 [Spring 2017] - Ho RecSys: Paradigms Personalized recommendation Collaborative Content- based Knowledge-based CS 534 [Spring 2017] - Ho RecSys: Evolution Collaborative filtering & Social + interest Item hierarchy: user-user similarity: graph based: You bought a People like you who Your friends like printer, will also bought beer also Lady Gaga so you need ink bought diapers will like Lady Gaga Attribute based: Collaborative filtering & Model based: You like action movies item-item similarity: Training SVM, LDA, starring Clint Eastwood, You like Godfather so SVD for implicit you will also like Good, you will like Scarface features Bad, and Ugly CS 534 [Spring 2017] - Ho RecSys: Basic Techniques Pros Cons No knowledge‐ engineering Requires some form of rating Collaborative effort, serendipity of results, feedback, cold start for new learns market segments users and new items No community required, Content descriptions Content-based comparison
    [Show full text]
  • Understanding Similarity Metrics in Neighbour-Based Recommender Systems
    Understanding Similarity Metrics in Neighbour-based Recommender Systems Alejandro Bellogín and Arjen P. de Vries Information Access, Centrum Wiskunde & Informatica Science Park 123, 1098 XG Amsterdam, The Netherlands {A.Bellogin, Arjen.de.Vries}@cwi.nl ABSTRACT items) are the primary source of evidence upon which this Neighbour-based collaborative filtering is a recommendation similarity is established. As CF algorithms exploit the ac- technique that provides meaningful and, usually, accurate tive user's ratings to make predictions, no item descriptions recommendations. The method's success depends however are needed to provide recommendations. In this paper, we critically upon the similarity metric used to find the most focus our attention to the memory-based class of CF algo- similar users (neighbours), the basis of the predictions made. rithms that are user-based. These algorithms compute user In this paper, we explore twelve features that aim to explain similarities from the user's item ratings, typically based on why some user similarity metrics perform better than oth- distance and correlation metrics [9]; items not yet seen by ers. Specifically, we define two sets of features, a first one the active user but rated by users highly similar to the ac- based on statistics computed over the distance distribution tive user (in terms of their item ratings) are then used to in the neighbourhood, and, a second one based on the near- produce the recommendations. The \similar" people found est neighbour graph. Our experiments with a public dataset (whose preferences are used to predict ratings for the active show that some of these features are able to correlate with user) are usually referred to as the active user's neighbours.
    [Show full text]
  • FEXIPRO: Fast and Exact Inner Product Retrieval in Recommender Systems∗
    FEXIPRO: Fast and Exact Inner Product Retrieval in Recommender Systems∗ Hui Liy, Tsz Nam Chanx, Man Lung Yiux, Nikos Mamoulisy yThe University of Hong Kong xHong Kong Polytechnic University y{hli2, nikos}@cs.hku.hk x{cstnchan, csmlyiu}@comp.polyu.edu.hk ABSTRACT learning, approximation theory, and various heuristics [2]. Exam- Recommender systems have many successful applications in e- ple techniques include collaborative filtering [33], user-item graph commerce and social media, including Amazon, Netflix, and Yelp. models [4], regression based models [37] and matrix factorization Matrix Factorization (MF) is one of the most popular recommen- (MF) [26]. In this paper, we focus on MF, due to its prevalence in dation approaches; the original user-product rating matrix R with dealing with large user-item rating matrices. Let R be a m × n millions of rows and columns is decomposed into a user matrix Q matrix with the ratings of m users on n items. MF approximately and an item matrix P, such that the product QT P approximates factorizes R and computes the mapping of each user and item to a d-dimensional factor vector, where d minfm; ng. The output R. Each column q (p) of Q (P) holds the latent factors of the d×m corresponding user (item), and qT p is a prediction of the rating of the learning phase based on MF is a user matrix Q 2 R , where the i-th column is the factor vector of the i-th user, and an to item p by user q. Recommender systems based on MF sug- d×n gest to a user in q the items with the top-k scores in qT P.
    [Show full text]
  • Fishing in the Stream: Similarity Search Over Endless Data
    Fishing in the Stream: Similarity Search over Endless Data Naama Kraus David Carmel Idit Keidar Viterbi EE Department Yahoo Research Viterbi EE Department Technion, Haifa, Israel Technion, Haifa, Israel and Yahoo Research ABSTRACT applications ought to take into account temporal metrics in Similarity search is the task of retrieving data items that addition to similarity [19, 30, 29, 25, 31, 40, 23, 36, 39, 34]. are similar to a given query. In this paper, we introduce Nevertheless, the similarity search primitive has not been the time-sensitive notion of similarity search over endless extended to handle endless data-streams. To this end, we data-streams (SSDS), which takes into account data quality introduce in Section 2 the problem of similarity search over and temporal characteristics in addition to similarity. SSDS data streams (SSDS). is challenging as it needs to process unbounded data, while In order to efficiently retrieve such content at runtime, computation resources are bounded. We propose Stream- an SSDS algorithm needs to maintain an index of streamed LSH, a randomized SSDS algorithm that bounds the index data. The challenge, however, is that the stream is un- size by retaining items according to their freshness, quality, bounded, whereas physical space capacity cannot grow with- and dynamic popularity attributes. We analytically show out bound; this limitation is particularly acute when the in- that Stream-LSH increases the probability to find similar dex resides in RAM for fast retrieval [39, 33]. A key aspect items compared to alternative approaches using the same of an SSDS algorithm is therefore its retention policy, which space capacity.
    [Show full text]
  • Recommender Systems in Industrial Contexts
    THÈSE Pour obtenir le grade de DOCTEUR DE L’UNIVERSITÉ DE GRENOBLE Spécialité : Mathématiques, Sciences et Technologies de l'Information, Informatique Arrêté ministériel : 7 août 2006 Présentée par Frank Meyer Thèse dirigée par Eric Gaussier et codirigée par Fabrice Clerot préparée au sein du Laboratoire LIG dans l'École Doctorale MSTII Recommender systems in industrial contexts Thèse soutenue publiquement le 25 janvier 2012 devant le jury composé de : Mme Anne Boyer Professeur de l'Université Nancy II Rapporteur M. Fabrice Clerot Responsable de l'Unité R&D PROF à Orange Labs Co-encadrant Mme Nathalie Denos Maître de conférence de l'Université Grenoble II Membre M. Marc El-Bèze Professeur de l'Université d'Avignon et Pays de Vaucluse Rapporteur M. Eric Gaussier Professeur de l'Université Grenoble I Directeur Mme Isabelle Tellier Professeur de l'Université Paris 3 Membre Version 3.30. May, 2012. Page 2 "Discovery is when something wonderful that you didn't know existed, or didn't know how to ask for, finds you" Fortune Magazine. Cited by Greg Linden, creator of Amazon's recommender engine. Page 3 Page 4 Acknowledgments First of all, I would like to thank all members of the Jury for having kindly agreed to evaluate my work. I am honored that Anne Boyer and Marc El-Bèze have agreed to report on my thesis. I warmly thank my supervisor, Eric Gaussier, for the confidence he has shown me during the last four years. His regular supports, despite the distance between Grenoble and Lannion, his advice and his encouragement have been a key driver for my work.
    [Show full text]