A Brief Review of Representation Learning in Recommender 赵鑫 RUC

Size: px
Start display at page:

Download "A Brief Review of Representation Learning in Recommender 赵鑫 RUC"

Transcription

1 A Brief Review of Representation Learning in Recommender 赵鑫 RUC batmanfly@qq.com

2 Representation learning

3 Overview of recommender systems Tasks Rating prediction Item recommendation Basic models MF LibFM

4 Rating Prediction User-item matrix i1 i2 u1 1? u2? 5 u3 3? u4? 2 Online test Offline test

5 Item Recommendation User-item matrix i1 i2 u1 yes? u2? yes u3 no? u4 yes yes Online test Offline test Retrieval-based metrics, e.g., MAP

6 Context-Aware Recommendation When you know more information about users and items

7 More complicated tasks

8 Practical Considerations

9 Rating Prediction User-item matrix i1 i2 u1 1? u2? 5 u3 3? u4? 2 Online test Offline test

10 Latent Factor Models

11 Matrix factorization

12 A Basic Model

13 Another formulation A Basic Model

14 Probabilistic Matrix Factorization

15 Probabilistic Matrix Factorization

16 Context-Aware Recommendation When you know more information about users and items

17 LibFM

18 Outline of the approaches Recommendation by network embedding Recommendation by word embedding Embedding as regularization Recommendation by TransE Recommendation by metric learning Recommendation by multi-modality fusion

19 Outline of the approaches Recommendation by network embedding Recommendation by word embedding Embedding as regularization Recommendation by TransE Recommendation by metric learning Recommendation by multi-modality fusion

20 What is network embedding? We map each node in a network into a lowdimensional space Distributed representation for nodes Similarity between nodes indicate the link strength Encode network information and generate node representation 20

21 Example Zachary s Karate Network: 21

22 Framework 22

23 LINE First-order Proximity Vertex 6 and 7 have a large first-order proximity The local pairwise proximity between the vertices Determined by the observed links However, many links between the vertices are missing Not sufficient for preserving the entire network structure From Jian Tang s slides

24 LINE Vertex 5 and 6 have a large second-order proximity p 5 = (1,1, 1,1,0,0,0,0,0,0) p 6 = (1,1, 1,1,0,0,5,0,0,0) Second-order Proximity The proximity between the neighborhood structures of the vertices Mathematically, the second-order proximity between each pair of vertices (u,v) is determined by: p u = (w u1, w u2,, w u V ) p v = (w v1, w v2,, w v V ) From Jian Tang s slides

25 LINE Preserving the First-order Proximity Given an undirected edge v i, v j, the joint probability of v i, v j 1 p 1 v i, v j = 1 + exp ( u T i u j ) u i : Embedding of vertexv i v i p 1 v i, v j = (i,j ) w ij w i j Objective: O 1 = d(p 1,, p 1, ) w ij log p 1 (v i, v j ) i,j E KL-divergence From Jian Tang s slides

26 LINE Preserving the Second-order Proximity Given a directed edge (v i, v j ), the conditional probability of v j given v i is: p 2 v j v i = exp(u j T u i ) V k=1 exp(u k T u i ) u i : Embedding of vertex i when i is a source node; u i : Embedding of vertex i when i is a target node. p 2 v j v i = w ij k V w ik Objective: O 2 = λ i d(p 2 v i, p 2 v i ) i V w ij log p 2 (v j v i ) i,j E λ i : Prestige of vertex in the network λ i = j w ij From Jian Tang s slides

27 LINE Preserving both Proximity Concatenate the embeddings individually learned by the two proximity First-order Second-order From Jian Tang s slides

28 Recommendation by network embedding Learning Distributed Representations for Recommender Systems with a Network Embedding Approach (Zhao et al, AIRS 2016) Motivation

29 Recommendation by network embedding Given any edge in the network

30 Recommendation by network embedding User-item recommendation

31 Recommendation by network embedding User-item-tag recommendation

32 Outline of the approaches Recommendation by network embedding Recommendation by word embedding Embedding as regularization Recommendation by TransE Recommendation by metric learning Recommendation by multi-modality fusion

33 Recommendation by word embedding Recall word2vec Input: a sequence of words from a vocabulary V Output: a fixed-length vector for each term in the vocabulary v w It implements the idea of distributional semantics using a shallow neural network model.

34 Recommendation by word embedding Generalized token2vec Input: a sequence of symbol tokens from a vocabulary V Output: a fixed-length vector for each symbol in the vocabulary v w You can imagine that all the sequences in which surrounding contexts are sensitive can potentially be modeled with word2vec.

35 Recommendation by word embedding POI data modeling User ID Location ID Check-in time Category label/name GPS information Check-in information User connections

36 A sequential way to model POI data Given a user u, a trajectory is a sequence of check-in records related to u User ID Location ID Check-in Timestamp u1 l :26am u1 l :26am u1 l :26am u1 l :26pm u2 l :16am u2 l :36am

37 A sequential way to model POI data Given a user u, a trajectory is a sequence of check-in records related to u User ID Location ID Check-in Timestamp u1 l :26am u1 l :26am u1 l :26am u1 l :26pm u2 l :16am u2 l :36am u1: l181 l32 l323 l32323 u2: l345 l13

38 Task Input: Check-in sequences together with user relations Output: Embedding representations for users, locations and other related information Zhao et al., ACM TKDD 2017

39 Recall CBOW CBOW predicts the current word using surrounding contexts Pr(w t context(w t )) Window size 2c context(w t ) = [w t c,, w t+c ]

40 Model sequential relatedness A direct application of doc2vec

41 Modeling social connectedness A skip-gram way to model all the friends

42 A joint model to characterize trajectories and links Jointly optimizing the two loss functions

43 Modeling multi-grained sequential contexts A long trajectory sequence can be split into multiple segments User ID Location ID Check-in Timestamp u1 l :26am u1 l :26am u1 l :26am u1 l :26pm u1: s1 s2 s1: l181 l32 s2: l323 l32323

44 Modeling multi-grained sequential contexts Modeling segment-level relatedness u1: s1 s2 s1: l181 l32 s2: l323 l32323

45 Modeling multi-grained sequential contexts Modeling location-level relatedness u1: s1 s2 s1: l181 l32 s2: l323 l32323

46 The joint hierarchical model Jointly optimizing three objective functions

47 Recommendation by word embedding Token2vec for product recommendation Doc2vec (Zhao et al., IEEE TKDE 2016) Doc user Word product A user profiling way

48 Recommendation by word embedding Token2vec for next-basket recommendation (Wang et al., SIGIR 2015)

49 Outline of the approaches Recommendation by network embedding Recommendation by word embedding Embedding as regularization Recommendation by TransE Recommendation by metric learning Recommendation by multi-modality fusion

50 Matrix factorization Motivation It mainly captures user-item interactions The item co-occurrence across users has been ignored Liang et al., RecSys 2016

51 Item embedding Motivation Levy and Goldberg show an equivalence between skip-gram word2vec trained with negative sampling value of k and implicit factorizing the pointwise mutual information (PMI) matrix shifted by log k. We can factorize the item co-occurrence matrix to obtain item embeddings

52 The joint model MF with embedding regularization

53 TransE Characterizing the triple relations

54 Next recommendation scenario What s the next movie to watch? He et al., RecSys 2017

55 Next recommendation scenario What s the next movie to watch? A traditional method Markov chain and factorized Markov chain

56 Next recommendation scenario What s the next movie to watch? A TransE based approach

57 Next recommendation scenario What s the next movie to watch? A TransE based approach

58 Outline of the approaches Recommendation by network embedding Recommendation by word embedding Embedding as regularization Recommendation by TransE Recommendation by metric learning Recommendation by multi-modality fusion

59 Metric learning for recommendation Metric A metric on a set X is a function The following conditions are satisfied

60 Metric learning for recommendation Metric learning The most original metric learning approach attempts to learn a Mahalanobis distance metric We can define the objective function

61 Metric learning for recommendation Metric Learning for knn Large margin nearest neighbor (LMNN) Pull loss Push loss

62 Metric learning for recommendation Representation-based metric learning Distance function Loss function Hsieh et al., WWW 2017

63 Metric learning for recommendation Representation-based metric learning Improving representations by integrating item features Regularization The joint loss

64 Outline of the approaches Recommendation by network embedding Recommendation by word embedding Embedding as regularization Recommendation by TransE Recommendation by metric learning Recommendation by multi-modality fusion

65 Multi-modality representation Rich side information

66 Multi-modality representation Rich side information Zhang et al., KDD 2016

67 Multi-modality representation Rich side information Modeling KB information

68 Multi-modality representation Rich side information Modeling text information

69 Multi-modality representation Rich side information Modeling image information

70 Multi-modality representation Rich side information Generative process

71 Multi-modality representation Complementary effect of visual and textual features Chen et al., to appear in AIRS 2017

72 Multi-modality representation A Multi-task learning method Chen et al., to appear in AIRS 2017

73 Future work ItemKNN MF (svd++) BPR FM? Why svd++, BPR and FM perform so well consistently on various datasets? How recommender systems borrow ideas from representation learning and deep learning? What is the future direction for recommender systems?

74 Thanks Wayne Xin Zhao, Sui Li, Yulan He, Edward Y. Chang, Ji-Rong Wen, Xiaoming Li: Connecting Social Media to E-Commerce: Cold-Start Product Recommendation Using Microblogging Information. IEEE Trans. Knowl. Data Eng. 28(5): (2016) Pengfei Wang, Jiafeng Guo, Yanyan Lan, Jun Xu, Shengxian Wan, Xueqi Cheng. Learning Hierarchical Representation Model for NextBasket Recommendation. SIGIR 2015: Xu Chen, Yongfeng Zhang, Wayne Xin Zhao and Zheng Qin. A Collaborative Neural Model for Rating Prediction by Leveraging User Reviews and Product Images. To appear in AIRS Wayne Xin Zhao, Feifan Fan, Ji-Rong Wen, Edward Chang. Joint Representation Learning for Location-based Social Networks with Multi-Grained Sequential Contexts. To appear in ACM TKDD. Liang, J. Altosaar, L. Charlin, and D. Blei. Factorization meets the item embedding: Regularizing matrix factorization with item co-occurrence. ACM RecSys, Ruining He, Wang-Cheng Kang, Julian McAuley. Translation-based Recommendation. RecSys 2017: Cheng-Kang Hsieh, Longqi Yang, Yin Cui, Tsung-Yi Lin, Serge J. Belongie, Deborah Estrin. Collaborative Metric Learning. WWW 2017: Fuzheng Zhang, Nicholas Jing Yuan, Defu Lian, Xing Xie, Wei-Ying Ma. Collaborative Knowledge Base Embedding for Recommender Systems. KDD 2016:

Mining Human Trajectory Data: A Study on Check-in Sequences. Xin Zhao Renmin University of China,

Mining Human Trajectory Data: A Study on Check-in Sequences. Xin Zhao Renmin University of China, Mining Human Trajectory Data: A Study on Check-in Sequences Xin Zhao batmanfly@qq.com Renmin University of China, Check-in data What information these check-in data contain? User ID Location ID Check-in

More information

A Novel deep learning models for Cold Start Product Recommendation using Micro blogging Information

A Novel deep learning models for Cold Start Product Recommendation using Micro blogging Information A Novel deep learning models for Cold Start Product Recommendation using Micro blogging Information Chunchu.Harika, PG Scholar, Department of CSE, QIS College of Engineering and Technology, Ongole, Andhra

More information

Collaborative Metric Learning

Collaborative Metric Learning Collaborative Metric Learning Andy Hsieh, Longqi Yang, Yin Cui, Tsung-Yi Lin, Serge Belongie, Deborah Estrin Connected Experience Lab, Cornell Tech AOL CONNECTED EXPERIENCES LAB CORNELL TECH 1 Collaborative

More information

Sequential Recommender System based on Hierarchical Attention Network

Sequential Recommender System based on Hierarchical Attention Network Sequential Recommender System based on Hierarchical Attention Network submitted for blind review Abstract With a large amount of user activity data accumulated, it is crucial to exploit user sequential

More information

E-Commerce for Cold Start Product Suggestion Using Micro Blogging Data Through Connecting Social Media

E-Commerce for Cold Start Product Suggestion Using Micro Blogging Data Through Connecting Social Media International Journal of Scientific Research in Computer Science, Engineering and Information Technology 2018 IJSRCSEIT Volume 4 Issue 2 ISSN : 2456-3307 E-Commerce for Cold Start Product Suggestion Using

More information

Content-Aware Hierarchical Point-of-Interest Embedding Model for Successive POI Recommendation

Content-Aware Hierarchical Point-of-Interest Embedding Model for Successive POI Recommendation Content-Aware Hierarchical Point-of-Interest Embedding Model for Successive POI Recommendation Buru Chang 1, Yonggyu Park 1, Donghyeon Park 1, Seongsoon Kim 2 and Jaewoo Kang 1 1 Korea University 2 Naver

More information

GraphGAN: Graph Representation Learning with Generative Adversarial Nets

GraphGAN: Graph Representation Learning with Generative Adversarial Nets The 32 nd AAAI Conference on Artificial Intelligence (AAAI 2018) New Orleans, Louisiana, USA GraphGAN: Graph Representation Learning with Generative Adversarial Nets Hongwei Wang 1,2, Jia Wang 3, Jialin

More information

Network embedding. Cheng Zheng

Network embedding. Cheng Zheng Network embedding Cheng Zheng Outline Problem definition Factorization based algorithms --- Laplacian Eigenmaps(NIPS, 2001) Random walk based algorithms ---DeepWalk(KDD, 2014), node2vec(kdd, 2016) Deep

More information

POI2Vec: Geographical Latent Representation for Predicting Future Visitors

POI2Vec: Geographical Latent Representation for Predicting Future Visitors : Geographical Latent Representation for Predicting Future Visitors Shanshan Feng 1 Gao Cong 2 Bo An 2 Yeow Meng Chee 3 1 Interdisciplinary Graduate School 2 School of Computer Science and Engineering

More information

TriRank: Review-aware Explainable Recommendation by Modeling Aspects

TriRank: Review-aware Explainable Recommendation by Modeling Aspects TriRank: Review-aware Explainable Recommendation by Modeling Aspects Xiangnan He, Tao Chen, Min-Yen Kan, Xiao Chen National University of Singapore Presented by Xiangnan He CIKM 15, Melbourne, Australia

More information

Bridging Semantic Gaps between Natural Languages and APIs with Word Embedding

Bridging Semantic Gaps between Natural Languages and APIs with Word Embedding IEEE Transactions on Software Engineering, 2019 Bridging Semantic Gaps between Natural Languages and APIs with Word Embedding Authors: Xiaochen Li 1, He Jiang 1, Yasutaka Kamei 1, Xin Chen 2 1 Dalian University

More information

CS249: ADVANCED DATA MINING

CS249: ADVANCED DATA MINING CS249: ADVANCED DATA MINING Recommender Systems II Instructor: Yizhou Sun yzsun@cs.ucla.edu May 31, 2017 Recommender Systems Recommendation via Information Network Analysis Hybrid Collaborative Filtering

More information

Survey on Recommendation of Personalized Travel Sequence

Survey on Recommendation of Personalized Travel Sequence Survey on Recommendation of Personalized Travel Sequence Mayuri D. Aswale 1, Dr. S. C. Dharmadhikari 2 ME Student, Department of Information Technology, PICT, Pune, India 1 Head of Department, Department

More information

CSE 258. Web Mining and Recommender Systems. Advanced Recommender Systems

CSE 258. Web Mining and Recommender Systems. Advanced Recommender Systems CSE 258 Web Mining and Recommender Systems Advanced Recommender Systems This week Methodological papers Bayesian Personalized Ranking Factorizing Personalized Markov Chains Personalized Ranking Metric

More information

Outline. Morning program Preliminaries Semantic matching Learning to rank Entities

Outline. Morning program Preliminaries Semantic matching Learning to rank Entities 112 Outline Morning program Preliminaries Semantic matching Learning to rank Afternoon program Modeling user behavior Generating responses Recommender systems Industry insights Q&A 113 are polysemic Finding

More information

Ph.D. in Computer Science & Technology, Tsinghua University, Beijing, China, 2007

Ph.D. in Computer Science & Technology, Tsinghua University, Beijing, China, 2007 Yiqun Liu Associate Professor & Department co-chair Department of Computer Science and Technology Email yiqunliu@tsinghua.edu.cn URL http://www.thuir.org/group/~yqliu Phone +86-10-62796672 Fax +86-10-62796672

More information

FastText. Jon Koss, Abhishek Jindal

FastText. Jon Koss, Abhishek Jindal FastText Jon Koss, Abhishek Jindal FastText FastText is on par with state-of-the-art deep learning classifiers in terms of accuracy But it is way faster: FastText can train on more than one billion words

More information

Decomposing Fit Semantics for Product Size Recommendation in Metric Spaces

Decomposing Fit Semantics for Product Size Recommendation in Metric Spaces Decomposing Fit Semantics for Product Size Recommendation in Metric Spaces Rishabh Misra r1misra@eng.ucsd.edu ABSTRACT Product size recommendation and fit prediction are critical in order to improve customers

More information

A Study of MatchPyramid Models on Ad hoc Retrieval

A Study of MatchPyramid Models on Ad hoc Retrieval A Study of MatchPyramid Models on Ad hoc Retrieval Liang Pang, Yanyan Lan, Jiafeng Guo, Jun Xu, Xueqi Cheng Institute of Computing Technology, Chinese Academy of Sciences Text Matching Many text based

More information

PTE : Predictive Text Embedding through Large-scale Heterogeneous Text Networks

PTE : Predictive Text Embedding through Large-scale Heterogeneous Text Networks PTE : Predictive Text Embedding through Large-scale Heterogeneous Text Networks Pramod Srinivasan CS591txt - Text Mining Seminar University of Illinois, Urbana-Champaign April 8, 2016 Pramod Srinivasan

More information

STREAMING RANKING BASED RECOMMENDER SYSTEMS

STREAMING RANKING BASED RECOMMENDER SYSTEMS STREAMING RANKING BASED RECOMMENDER SYSTEMS Weiqing Wang, Hongzhi Yin, Zi Huang, Qinyong Wang, Xingzhong Du, Quoc Viet Hung Nguyen University of Queensland, Australia & Griffith University, Australia July

More information

Knowledge Graph Embedding with Numeric Attributes of Entities

Knowledge Graph Embedding with Numeric Attributes of Entities Knowledge Graph Embedding with Numeric Attributes of Entities Yanrong Wu, Zhichun Wang College of Information Science and Technology Beijing Normal University, Beijing 100875, PR. China yrwu@mail.bnu.edu.cn,

More information

3 : Representation of Undirected GMs

3 : Representation of Undirected GMs 0-708: Probabilistic Graphical Models 0-708, Spring 202 3 : Representation of Undirected GMs Lecturer: Eric P. Xing Scribes: Nicole Rafidi, Kirstin Early Last Time In the last lecture, we discussed directed

More information

Learning Graph-based POI Embedding for Location-based Recommendation

Learning Graph-based POI Embedding for Location-based Recommendation Learning Graph-based POI Embedding for Location-based Recommendation Min Xie, Hongzhi Yin, Hao Wang, Fanjiang Xu, Weitong Chen, Sen Wang Institute of Software, Chinese Academy of Sciences, China The University

More information

A Few Things to Know about Machine Learning for Web Search

A Few Things to Know about Machine Learning for Web Search AIRS 2012 Tianjin, China Dec. 19, 2012 A Few Things to Know about Machine Learning for Web Search Hang Li Noah s Ark Lab Huawei Technologies Talk Outline My projects at MSRA Some conclusions from our research

More information

Understanding and Recommending Podcast Content

Understanding and Recommending Podcast Content Understanding and Recommending Podcast Content Longqi Yang Computer Science Ph.D. Candidate ylongqi@cs.cornell.edu Twitter : @ylongqi Funders: 1 Collaborators 2 Why Podcast 3 Emerging Interfaces for Podcast

More information

First Place Solution for NLPCC 2018 Shared Task User Profiling and Recommendation

First Place Solution for NLPCC 2018 Shared Task User Profiling and Recommendation First Place Solution for NLPCC 2018 Shared Task User Profiling and Recommendation Qiaojing Xie, Yuqian Wang, Zhenjing Xu, Kaidong Yu, Chen Wei (B), and ZhiChen Yu Turing Robot, Beijing, China {xieqiaojing,wangyuqian,weichen}@uzoo.cn

More information

E-Commerce - Bookstore with Recommendation System using Prediction

E-Commerce - Bookstore with Recommendation System using Prediction Global Journal of Pure and Applied Mathematics. ISSN 0973-1768 Volume 13, Number 6 (2017), pp. 2463-2470 Research India Publications http://www.ripublication.com E-Commerce - Bookstore with Recommendation

More information

Pseudo-Implicit Feedback for Alleviating Data Sparsity in Top-K Recommendation

Pseudo-Implicit Feedback for Alleviating Data Sparsity in Top-K Recommendation Pseudo-Implicit Feedback for Alleviating Data Sparsity in Top-K Recommendation Yun He, Haochen Chen, Ziwei Zhu, James Caverlee Department of Computer Science and Engineering, Texas A&M University Department

More information

International Journal of Scientific Research and Modern Education (IJSRME) Impact Factor: 6.225, ISSN (Online): (

International Journal of Scientific Research and Modern Education (IJSRME) Impact Factor: 6.225, ISSN (Online): ( 333A NEW SIMILARITY MEASURE FOR TRAJECTORY DATA CLUSTERING D. Mabuni* & Dr. S. Aquter Babu** Assistant Professor, Department of Computer Science, Dravidian University, Kuppam, Chittoor District, Andhra

More information

Combining Review Text Content and Reviewer-Item Rating Matrix to Predict Review Rating

Combining Review Text Content and Reviewer-Item Rating Matrix to Predict Review Rating Combining Review Text Content and Reviewer-Item Rating Matrix to Predict Review Rating Dipak J Kakade, Nilesh P Sable Department of Computer Engineering, JSPM S Imperial College of Engg. And Research,

More information

Non-negative Matrix Factorization for Multimodal Image Retrieval

Non-negative Matrix Factorization for Multimodal Image Retrieval Non-negative Matrix Factorization for Multimodal Image Retrieval Fabio A. González PhD Machine Learning 2015-II Universidad Nacional de Colombia F. González NMF for MM IR ML 2015-II 1 / 54 Outline 1 The

More information

Non-negative Matrix Factorization for Multimodal Image Retrieval

Non-negative Matrix Factorization for Multimodal Image Retrieval Non-negative Matrix Factorization for Multimodal Image Retrieval Fabio A. González PhD Bioingenium Research Group Computer Systems and Industrial Engineering Department Universidad Nacional de Colombia

More information

Location-Aware Web Service Recommendation Using Personalized Collaborative Filtering

Location-Aware Web Service Recommendation Using Personalized Collaborative Filtering ISSN 2395-1621 Location-Aware Web Service Recommendation Using Personalized Collaborative Filtering #1 Shweta A. Bhalerao, #2 Prof. R. N. Phursule 1 Shweta.bhalerao75@gmail.com 2 rphursule@gmail.com #12

More information

Translation-based Recommendation: A Scalable Method for Modeling Sequential Behavior

Translation-based Recommendation: A Scalable Method for Modeling Sequential Behavior Translation-based Recommendation: A Scalable Method for Modeling Sequential Behavior Ruining He, Wang-Cheng Kang, Julian McAuley UC San Diego {r4he, wckang, jmcauley}@ucsd.edu Abstract Modeling the complex

More information

Recommendation System for Location-based Social Network CS224W Project Report

Recommendation System for Location-based Social Network CS224W Project Report Recommendation System for Location-based Social Network CS224W Project Report Group 42, Yiying Cheng, Yangru Fang, Yongqing Yuan 1 Introduction With the rapid development of mobile devices and wireless

More information

Music Recommendation with Implicit Feedback and Side Information

Music Recommendation with Implicit Feedback and Side Information Music Recommendation with Implicit Feedback and Side Information Shengbo Guo Yahoo! Labs shengbo@yahoo-inc.com Behrouz Behmardi Criteo b.behmardi@criteo.com Gary Chen Vobile gary.chen@vobileinc.com Abstract

More information

A United Approach to Learning Sparse Attributed Network Embedding

A United Approach to Learning Sparse Attributed Network Embedding 2018 IEEE International Conference on Data Mining A United Approach to Learning Sparse Attributed Network Embedding Hao Wang 1, Enhong Chen 1,*,QiLiu 1, Tong Xu 1, Dongfang Du 2, Wen Su 2, Xiaopeng Zhang

More information

Mining Web Data. Lijun Zhang

Mining Web Data. Lijun Zhang Mining Web Data Lijun Zhang zlj@nju.edu.cn http://cs.nju.edu.cn/zlj Outline Introduction Web Crawling and Resource Discovery Search Engine Indexing and Query Processing Ranking Algorithms Recommender Systems

More information

A Deep Relevance Matching Model for Ad-hoc Retrieval

A Deep Relevance Matching Model for Ad-hoc Retrieval A Deep Relevance Matching Model for Ad-hoc Retrieval Jiafeng Guo 1, Yixing Fan 1, Qingyao Ai 2, W. Bruce Croft 2 1 CAS Key Lab of Web Data Science and Technology, Institute of Computing Technology, Chinese

More information

Classifying a specific image region using convolutional nets with an ROI mask as input

Classifying a specific image region using convolutional nets with an ROI mask as input Classifying a specific image region using convolutional nets with an ROI mask as input 1 Sagi Eppel Abstract Convolutional neural nets (CNN) are the leading computer vision method for classifying images.

More information

LINE: Large-scale Information Network Embedding

LINE: Large-scale Information Network Embedding LINE: Large-scale Information Network Embedding Jian Tang 1, Meng Qu 2, Mingzhe Wang 2, Ming Zhang 2, Jun Yan 1, Qiaozhu Mei 3 1 Microsoft Research Asia, {jiatang, junyan}@microsoft.com 2 School of EECS,

More information

arxiv: v1 [cs.ir] 27 Jun 2016

arxiv: v1 [cs.ir] 27 Jun 2016 The Apps You Use Bring The Blogs to Follow arxiv:1606.08406v1 [cs.ir] 27 Jun 2016 ABSTRACT Yue Shi Yahoo! Research Sunnyvale, CA, USA yueshi@acm.org Liang Dong Yahoo! Tumblr New York, NY, USA ldong@tumblr.com

More information

Intelligent Search Engine and Recommender Systems based on Knowledge Graph

Intelligent Search Engine and Recommender Systems based on Knowledge Graph Intelligent Search Engine and Recommender Systems based on Knowledge Graph 阳德青 复旦大学知识工场实验室 yangdeqing@fudan.edu.cn 2017-07-13 Background Knowledge Graph exhibits its excellent performance through the intelligent

More information

arxiv: v1 [cs.lg] 12 Mar 2015

arxiv: v1 [cs.lg] 12 Mar 2015 LINE: Large-scale Information Network Embedding Jian Tang 1, Meng Qu 2, Mingzhe Wang 2, Ming Zhang 2, Jun Yan 1, Qiaozhu Mei 3 1 Microsoft Research Asia, {jiatang, junyan}@microsoft.com 2 School of EECS,

More information

A Bayesian Approach to Hybrid Image Retrieval

A Bayesian Approach to Hybrid Image Retrieval A Bayesian Approach to Hybrid Image Retrieval Pradhee Tandon and C. V. Jawahar Center for Visual Information Technology International Institute of Information Technology Hyderabad - 500032, INDIA {pradhee@research.,jawahar@}iiit.ac.in

More information

A Privacy-Preserving QoS Prediction Framework for Web Service Recommendation

A Privacy-Preserving QoS Prediction Framework for Web Service Recommendation A Privacy-Preserving QoS Prediction Framework for Web Service Recommendation Pallavi P. Gupta 1, Sarika M. Chavan 2 1 Dept of CSE (Deogiri Institute of Engineering and Management Studies) Aurangabad. pallavi.gupta26_07@yahoo.co.in

More information

Online Cross-Modal Hashing for Web Image Retrieval

Online Cross-Modal Hashing for Web Image Retrieval Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence (AAAI-6) Online Cross-Modal Hashing for Web Image Retrieval Liang ie Department of Mathematics Wuhan University of Technology, China

More information

Non Overlapping Communities

Non Overlapping Communities Non Overlapping Communities Davide Mottin, Konstantina Lazaridou HassoPlattner Institute Graph Mining course Winter Semester 2016 Acknowledgements Most of this lecture is taken from: http://web.stanford.edu/class/cs224w/slides

More information

Supervised Models for Multimodal Image Retrieval based on Visual, Semantic and Geographic Information

Supervised Models for Multimodal Image Retrieval based on Visual, Semantic and Geographic Information Supervised Models for Multimodal Image Retrieval based on Visual, Semantic and Geographic Information Duc-Tien Dang-Nguyen, Giulia Boato, Alessandro Moschitti, Francesco G.B. De Natale Department of Information

More information

CPSC 340: Machine Learning and Data Mining. Multi-Dimensional Scaling Fall 2017

CPSC 340: Machine Learning and Data Mining. Multi-Dimensional Scaling Fall 2017 CPSC 340: Machine Learning and Data Mining Multi-Dimensional Scaling Fall 2017 Assignment 4: Admin 1 late day for tonight, 2 late days for Wednesday. Assignment 5: Due Monday of next week. Final: Details

More information

arxiv: v1 [cs.mm] 12 Jan 2016

arxiv: v1 [cs.mm] 12 Jan 2016 Learning Subclass Representations for Visually-varied Image Classification Xinchao Li, Peng Xu, Yue Shi, Martha Larson, Alan Hanjalic Multimedia Information Retrieval Lab, Delft University of Technology

More information

COLD-START PRODUCT RECOMMENDATION THROUGH SOCIAL NETWORKING SITES USING WEB SERVICE INFORMATION

COLD-START PRODUCT RECOMMENDATION THROUGH SOCIAL NETWORKING SITES USING WEB SERVICE INFORMATION COLD-START PRODUCT RECOMMENDATION THROUGH SOCIAL NETWORKING SITES USING WEB SERVICE INFORMATION Z. HIMAJA 1, C.SREEDHAR 2 1 PG Scholar, Dept of CSE, G Pulla Reddy Engineering College, Kurnool (District),

More information

Mining Web Data. Lijun Zhang

Mining Web Data. Lijun Zhang Mining Web Data Lijun Zhang zlj@nju.edu.cn http://cs.nju.edu.cn/zlj Outline Introduction Web Crawling and Resource Discovery Search Engine Indexing and Query Processing Ranking Algorithms Recommender Systems

More information

Where Next? Data Mining Techniques and Challenges for Trajectory Prediction. Slides credit: Layla Pournajaf

Where Next? Data Mining Techniques and Challenges for Trajectory Prediction. Slides credit: Layla Pournajaf Where Next? Data Mining Techniques and Challenges for Trajectory Prediction Slides credit: Layla Pournajaf o Navigational services. o Traffic management. o Location-based advertising. Source: A. Monreale,

More information

Semi-supervised Data Representation via Affinity Graph Learning

Semi-supervised Data Representation via Affinity Graph Learning 1 Semi-supervised Data Representation via Affinity Graph Learning Weiya Ren 1 1 College of Information System and Management, National University of Defense Technology, Changsha, Hunan, P.R China, 410073

More information

L1-graph based community detection in online social networks

L1-graph based community detection in online social networks L1-graph based community detection in online social networks Liang Huang 1, Ruixuan Li 1, Kunmei Wen 1, Xiwu Gu 1, Yuhua Li 1 and Zhiyong Xu 2 1 Huazhong University of Science and Technology 2 Suffork

More information

AUTOMATIC VISUAL CONCEPT DETECTION IN VIDEOS

AUTOMATIC VISUAL CONCEPT DETECTION IN VIDEOS AUTOMATIC VISUAL CONCEPT DETECTION IN VIDEOS Nilam B. Lonkar 1, Dinesh B. Hanchate 2 Student of Computer Engineering, Pune University VPKBIET, Baramati, India Computer Engineering, Pune University VPKBIET,

More information

This Talk. Map nodes to low-dimensional embeddings. 2) Graph neural networks. Deep learning architectures for graphstructured

This Talk. Map nodes to low-dimensional embeddings. 2) Graph neural networks. Deep learning architectures for graphstructured Representation Learning on Networks, snap.stanford.edu/proj/embeddings-www, WWW 2018 1 This Talk 1) Node embeddings Map nodes to low-dimensional embeddings. 2) Graph neural networks Deep learning architectures

More information

Collaborative Filtering using a Spreading Activation Approach

Collaborative Filtering using a Spreading Activation Approach Collaborative Filtering using a Spreading Activation Approach Josephine Griffith *, Colm O Riordan *, Humphrey Sorensen ** * Department of Information Technology, NUI, Galway ** Computer Science Department,

More information

An efficient face recognition algorithm based on multi-kernel regularization learning

An efficient face recognition algorithm based on multi-kernel regularization learning Acta Technica 61, No. 4A/2016, 75 84 c 2017 Institute of Thermomechanics CAS, v.v.i. An efficient face recognition algorithm based on multi-kernel regularization learning Bi Rongrong 1 Abstract. A novel

More information

Trajectory analysis. Ivan Kukanov

Trajectory analysis. Ivan Kukanov Trajectory analysis Ivan Kukanov Joensuu, 2014 Semantic Trajectory Mining for Location Prediction Josh Jia-Ching Ying Tz-Chiao Weng Vincent S. Tseng Taiwan Wang-Chien Lee Wang-Chien Lee USA Copyright 2011

More information

Leveraging Click Completion for Graph-based Image Ranking

Leveraging Click Completion for Graph-based Image Ranking 2016 17th International Conference on Parallel and Distributed Computing, Applications and Technologies Leveraging Click Completion for Graph-based Image Ranking Xiaohong Qin, Yu He, Jun Wu Beijing Key

More information

QUINT: On Query-Specific Optimal Networks

QUINT: On Query-Specific Optimal Networks QUINT: On Query-Specific Optimal Networks Presenter: Liangyue Li Joint work with Yuan Yao (NJU) -1- Jie Tang (Tsinghua) Wei Fan (Baidu) Hanghang Tong (ASU) Node Proximity: What? Node proximity: the closeness

More information

An improved PageRank algorithm for Social Network User s Influence research Peng Wang, Xue Bo*, Huamin Yang, Shuangzi Sun, Songjiang Li

An improved PageRank algorithm for Social Network User s Influence research Peng Wang, Xue Bo*, Huamin Yang, Shuangzi Sun, Songjiang Li 3rd International Conference on Mechatronics and Industrial Informatics (ICMII 2015) An improved PageRank algorithm for Social Network User s Influence research Peng Wang, Xue Bo*, Huamin Yang, Shuangzi

More information

arxiv: v2 [cs.si] 10 Jul 2018

arxiv: v2 [cs.si] 10 Jul 2018 Explainable Social Contextual Image Recommendation with Hierarchical Attention arxiv:1806.00723v2 [cs.si] 10 Jul 2018 Abstract Le Wu, Lei Chen, Richang Hong, Member, IEEE, Yanjie Fu, Xing Xie, Senior Member,

More information

Cold-Start Web Service Recommendation Using Implicit Feedback

Cold-Start Web Service Recommendation Using Implicit Feedback Cold-Start Web Service Recommendation Using Implicit Feedback Gang Tian 1,2, Jian Wang 1*, Keqing He 1, Weidong Zhao 2, Panpan Gao 1 1 State Key Laboratory of Software Engineering, School of Computer,

More information

DRN: A Deep Reinforcement Learning Framework for News Recommendation

DRN: A Deep Reinforcement Learning Framework for News Recommendation DRN: A Deep Reinforcement Learning Framework for News Recommendation Guanjie Zheng, Fuzheng Zhang, Zihan Zheng, Yang Xiang, Nicholas Jing Yuan, Xing Xie, Zhenhui (Jessie) Li 11/9/18 1 Introduction: Why

More information

Word2vec and beyond. presented by Eleni Triantafillou. March 1, 2016

Word2vec and beyond. presented by Eleni Triantafillou. March 1, 2016 Word2vec and beyond presented by Eleni Triantafillou March 1, 2016 The Big Picture There is a long history of word representations Techniques from information retrieval: Latent Semantic Analysis (LSA)

More information

Query Sugges*ons. Debapriyo Majumdar Information Retrieval Spring 2015 Indian Statistical Institute Kolkata

Query Sugges*ons. Debapriyo Majumdar Information Retrieval Spring 2015 Indian Statistical Institute Kolkata Query Sugges*ons Debapriyo Majumdar Information Retrieval Spring 2015 Indian Statistical Institute Kolkata Search engines User needs some information search engine tries to bridge this gap ssumption: the

More information

A New Evaluation Method of Node Importance in Directed Weighted Complex Networks

A New Evaluation Method of Node Importance in Directed Weighted Complex Networks Journal of Systems Science and Information Aug., 2017, Vol. 5, No. 4, pp. 367 375 DOI: 10.21078/JSSI-2017-367-09 A New Evaluation Method of Node Importance in Directed Weighted Complex Networks Yu WANG

More information

Hidden Markov Models. Slides adapted from Joyce Ho, David Sontag, Geoffrey Hinton, Eric Xing, and Nicholas Ruozzi

Hidden Markov Models. Slides adapted from Joyce Ho, David Sontag, Geoffrey Hinton, Eric Xing, and Nicholas Ruozzi Hidden Markov Models Slides adapted from Joyce Ho, David Sontag, Geoffrey Hinton, Eric Xing, and Nicholas Ruozzi Sequential Data Time-series: Stock market, weather, speech, video Ordered: Text, genes Sequential

More information

Liangjie Hong*, Dawei Yin*, Jian Guo, Brian D. Davison*

Liangjie Hong*, Dawei Yin*, Jian Guo, Brian D. Davison* Tracking Trends: Incorporating Term Volume into Temporal Topic Models Liangjie Hong*, Dawei Yin*, Jian Guo, Brian D. Davison* Dept. of Computer Science and Engineering, Lehigh University, Bethlehem, PA,

More information

Effective Latent Space Graph-based Re-ranking Model with Global Consistency

Effective Latent Space Graph-based Re-ranking Model with Global Consistency Effective Latent Space Graph-based Re-ranking Model with Global Consistency Feb. 12, 2009 1 Outline Introduction Related work Methodology Graph-based re-ranking model Learning a latent space graph A case

More information

Personalized Ranking Metric Embedding for Next New POI Recommendation

Personalized Ranking Metric Embedding for Next New POI Recommendation Proceedings of the Twenty-Fourth International Joint Conference on Artificial Intelligence (IJCAI 215) Personalized Ranking Metric Embedding for Next New POI Recommendation Shanshan Feng, 1 Xutao Li, 2

More information

CSE 158 Lecture 6. Web Mining and Recommender Systems. Community Detection

CSE 158 Lecture 6. Web Mining and Recommender Systems. Community Detection CSE 158 Lecture 6 Web Mining and Recommender Systems Community Detection Dimensionality reduction Goal: take high-dimensional data, and describe it compactly using a small number of dimensions Assumption:

More information

Relation Structure-Aware Heterogeneous Information Network Embedding

Relation Structure-Aware Heterogeneous Information Network Embedding Relation Structure-Aware Heterogeneous Information Network Embedding Yuanfu Lu 1, Chuan Shi 1, Linmei Hu 1, Zhiyuan Liu 2 1 Beijing University of osts and Telecommunications, Beijing, China 2 Tsinghua

More information

Link Prediction for Social Network

Link Prediction for Social Network Link Prediction for Social Network Ning Lin Computer Science and Engineering University of California, San Diego Email: nil016@eng.ucsd.edu Abstract Friendship recommendation has become an important issue

More information

Learning Compact and Effective Distance Metrics with Diversity Regularization. Pengtao Xie. Carnegie Mellon University

Learning Compact and Effective Distance Metrics with Diversity Regularization. Pengtao Xie. Carnegie Mellon University Learning Compact and Effective Distance Metrics with Diversity Regularization Pengtao Xie Carnegie Mellon University 1 Distance Metric Learning Similar Dissimilar Distance Metric Wide applications in retrieval,

More information

Learning to Match. Jun Xu, Zhengdong Lu, Tianqi Chen, Hang Li

Learning to Match. Jun Xu, Zhengdong Lu, Tianqi Chen, Hang Li Learning to Match Jun Xu, Zhengdong Lu, Tianqi Chen, Hang Li 1. Introduction The main tasks in many applications can be formalized as matching between heterogeneous objects, including search, recommendation,

More information

Point-of-Interest Recommendation in Location- Based Social Networks with Personalized Geo-Social Influence

Point-of-Interest Recommendation in Location- Based Social Networks with Personalized Geo-Social Influence MOBILE INFORMATION SYSTEMS Point-of-Interest Recommendation in Location- Based Social Networks with Personalized Geo-Social Influence HUANG Liwei 1, MA Yutao 2,3,*, LIU Yanbo 1 1 Beijing Institute of Remote

More information

On Exploiting Transient Contact Patterns for Data Forwarding in Delay Tolerant Networks

On Exploiting Transient Contact Patterns for Data Forwarding in Delay Tolerant Networks On Exploiting Transient Contact Patterns for Data Forwarding in Delay Tolerant Networks Wei Gao and Guohong Cao Dept. of Computer Science and Engineering Pennsylvania State University Outline Introduction

More information

Entity and Knowledge Base-oriented Information Retrieval

Entity and Knowledge Base-oriented Information Retrieval Entity and Knowledge Base-oriented Information Retrieval Presenter: Liuqing Li liuqing@vt.edu Digital Library Research Laboratory Virginia Polytechnic Institute and State University Blacksburg, VA 24061

More information

Canonical Image Selection for Large-scale Flickr Photos using Hadoop

Canonical Image Selection for Large-scale Flickr Photos using Hadoop Canonical Image Selection for Large-scale Flickr Photos using Hadoop Guan-Long Wu National Taiwan University, Taipei Nov. 10, 2009, @NCHC Communication and Multimedia Lab ( 通訊與多媒體實驗室 ), Department of Computer

More information

An Efficient Methodology for Image Rich Information Retrieval

An Efficient Methodology for Image Rich Information Retrieval An Efficient Methodology for Image Rich Information Retrieval 56 Ashwini Jaid, 2 Komal Savant, 3 Sonali Varma, 4 Pushpa Jat, 5 Prof. Sushama Shinde,2,3,4 Computer Department, Siddhant College of Engineering,

More information

Ruslan Salakhutdinov and Geoffrey Hinton. University of Toronto, Machine Learning Group IRGM Workshop July 2007

Ruslan Salakhutdinov and Geoffrey Hinton. University of Toronto, Machine Learning Group IRGM Workshop July 2007 SEMANIC HASHING Ruslan Salakhutdinov and Geoffrey Hinton University of oronto, Machine Learning Group IRGM orkshop July 2007 Existing Methods One of the most popular and widely used in practice algorithms

More information

Rongrong Ji (Columbia), Yu Gang Jiang (Fudan), June, 2012

Rongrong Ji (Columbia), Yu Gang Jiang (Fudan), June, 2012 Supervised Hashing with Kernels Wei Liu (Columbia Columbia), Jun Wang (IBM IBM), Rongrong Ji (Columbia), Yu Gang Jiang (Fudan), and Shih Fu Chang (Columbia Columbia) June, 2012 Outline Motivations Problem

More information

Document Information

Document Information Horizon 2020 Framework Programme Grant Agreement: 732328 FashionBrain Document Information Deliverable number: D5.3 Deliverable title: Early Demo for Trend Prediction Deliverable description: This early

More information

Deep Attributed Network Embedding

Deep Attributed Network Embedding Deep Attributed Network Embedding Hongchang Gao, Heng Huang Department of Electrical and Computer Engineering University of Pittsburgh, USA hongchanggao@gmail.com, heng.huang@pitt.edu Abstract Network

More information

Community-Based Recommendations: a Solution to the Cold Start Problem

Community-Based Recommendations: a Solution to the Cold Start Problem Community-Based Recommendations: a Solution to the Cold Start Problem Shaghayegh Sahebi Intelligent Systems Program University of Pittsburgh sahebi@cs.pitt.edu William W. Cohen Machine Learning Department

More information

with Deep Learning A Review of Person Re-identification Xi Li College of Computer Science, Zhejiang University

with Deep Learning A Review of Person Re-identification Xi Li College of Computer Science, Zhejiang University A Review of Person Re-identification with Deep Learning Xi Li College of Computer Science, Zhejiang University http://mypage.zju.edu.cn/xilics Email: xilizju@zju.edu.cn Person Re-identification Associate

More information

Probabilistic Graphical Models Part III: Example Applications

Probabilistic Graphical Models Part III: Example Applications Probabilistic Graphical Models Part III: Example Applications Selim Aksoy Department of Computer Engineering Bilkent University saksoy@cs.bilkent.edu.tr CS 551, Fall 2014 CS 551, Fall 2014 c 2014, Selim

More information

Multimodal Information Spaces for Content-based Image Retrieval

Multimodal Information Spaces for Content-based Image Retrieval Research Proposal Multimodal Information Spaces for Content-based Image Retrieval Abstract Currently, image retrieval by content is a research problem of great interest in academia and the industry, due

More information

Improving Implicit Recommender Systems with View Data

Improving Implicit Recommender Systems with View Data Improving Implicit Recommender Systems with View Data Jingtao Ding 1, Guanghui Yu 1, Xiangnan He 2, Yuhan Quan 1, Yong Li 1, Tat-Seng Chua 2, Depeng Jin 1, Jiajie Yu 3 1 Beijing National Research Center

More information

Multimodal Medical Image Retrieval based on Latent Topic Modeling

Multimodal Medical Image Retrieval based on Latent Topic Modeling Multimodal Medical Image Retrieval based on Latent Topic Modeling Mandikal Vikram 15it217.vikram@nitk.edu.in Suhas BS 15it110.suhas@nitk.edu.in Aditya Anantharaman 15it201.aditya.a@nitk.edu.in Sowmya Kamath

More information

Real-time Collaborative Filtering Recommender Systems

Real-time Collaborative Filtering Recommender Systems Real-time Collaborative Filtering Recommender Systems Huizhi Liang, Haoran Du, Qing Wang Presenter: Qing Wang Research School of Computer Science The Australian National University Australia Partially

More information

Learning a Hierarchical Embedding Model for Personalized Product Search

Learning a Hierarchical Embedding Model for Personalized Product Search Learning a Hierarchical Embedding Model for Personalized Product Search Qingyao Ai 1, Yongfeng Zhang 1, Keping Bi 1, Xu Chen 2, W. Bruce Croft 1 1 College of Information and Computer Sciences, University

More information

Network Representation Learning with Rich Text Information

Network Representation Learning with Rich Text Information Network Representation Learning with Rich Text Information Cheng Yang 1,, Zhiyuan Liu 1,, Deli Zhao, Maosong Sun 1, Edward Y. Chang 1 Department of Computer Science and Technology, State Key Lab on Intelligent

More information

result, it is very important to design a simulation system for dynamic laser scanning

result, it is very important to design a simulation system for dynamic laser scanning 3rd International Conference on Multimedia Technology(ICMT 2013) Accurate and Fast Simulation of Laser Scanning Imaging Luyao Zhou 1 and Huimin Ma Abstract. In order to design a more accurate simulation

More information

Analysis of Website for Improvement of Quality and User Experience

Analysis of Website for Improvement of Quality and User Experience Analysis of Website for Improvement of Quality and User Experience 1 Kalpesh Prajapati, 2 Viral Borisagar 1 ME Scholar, 2 Assistant Professor 1 Computer Engineering Department, 1 Government Engineering

More information