Being Prepared In A Sparse World: The Case of KNN Graph Construction. Antoine Boutet DRIM LIRIS, Lyon

Size: px
Start display at page:

Download "Being Prepared In A Sparse World: The Case of KNN Graph Construction. Antoine Boutet DRIM LIRIS, Lyon"

Transcription

1 Being Prepared In A Sparse World: The Case of KNN Graph Construction Antoine Boutet DRIM LIRIS, Lyon

2 Co-authors Joint work with François Taiani Nupur Mittal Anne-Marie Kermarrec Published at ICDE

3 Context: Engineering & Scale

4 Context: Engineering & Scale $1 million prize recommendation too much engineering effort F. Taiani

5 Context: Engineering & Scale Which Which practical practical approaches approaches for for scale scale and and performance? performance? $1 million prize recommendation too much engineering effort F. Taiani

6 Outline The problem: KNN graph construction The intuition: Is greed all there is? KIFF: K-nearest neighbor Fast and efficient Evaluation 6

7 KNN Graph Construction Entities (e.g. users) Items (e.g. locations) Ratings Alice User profile 7

8 KNN Graph Construction Similarity sim(, )= Goal: for each entity find k closest entities Many applications recommendations search recommendation, learning, Bob Alice... profile of Alice profile of Bob similarity function 8

9 Challenges Brute force not scalable: Alternatives: Approximate KNN Graph Using Locality Sensitive Hashing (LSH) Using Greedy Construction: best at the moment Vicinity [VS05], T-Man [JMB09], NNDescent [DML11], Hyrec [BFGKP14]? 9

10 Greedy KNN Construction Parallel-iterative algorithm, From a random graph Each node looks for potential new neighbours: (1) among friends of friends (2) among random nodes (optional) Carl Yann Alice Dave Bob Xavier 10

11 Repeat for all users until #changes < ε a b current neighbor candidates neighborhood from (1) & (2) Greedy Procedure node distance c computation sim(, ) = d ranking d selection 1 f new neighborhood 3

12 Outline The problem: KNN graph construction The intuition: Is greed all there is? KIFF: K-nearest neighbor Fast and efficient Evaluation 12

13 Is Greed all there is? Observation 1: Similarity remains the bottleneck 90% of execution time spent on similarity (Wikipedia dataset) Observation 2: Datasets are (often) sparse Many datasets use item-based profiles Most items little shared : sparse The curse of dimensionality 13

14 The Problem with Sparsity Density: E = # ratings, U = #users, I = #items density = 35% 14

15 The Problem with Sparsity Density: E = # ratings, U = #users, I = #items Only few rungs ("ratings") on the ladder 2 random nodes unlikely to share items density = 35% 15

16 The Problem with Sparsity Similarity metrics account for shared items Two random nodes unlikely to be close Hence greedy processes slow to start Difficult to find relevant candidates Execution of many similarity evaluations 16

17 KIFF's Intuition Greedy KNN approaches Assume no initial structure Start from a random graph In practice Underlying bipartite user / item graph Can be used to bootstrap the greedy process Use items to create Ranked Candidate Sets RCS( ) iff items( ) items( ) 17

18 Outline The problem: KNN graph construction The intuition: Is greed all there is? KIFF: K-nearest neighbor Fast and efficient Evaluation 18

19 RCS Construction Item profil Bipartite user / item graph Ranked Candidate Set construction 19

20 RCS Construction Users Items IPchalet Alice itemsalice IPbank Bob itemsbob Darth Stormy 20

21 RCS Construction RCSAlice Bob 1 Alice... Users IPchalet itemsalice IPbank RCSBob Alice 1 Items Bob itemsbob... Darth Stormy 21

22 RCS Construction RCSAlice Bob 1 Alice... Users IPchalet itemsalice IPbank RCSBob Alice 1 Items Bob itemsbob... Darth Unrelated users are never compared Unrelated users are never compared Stormy 22

23 Alice Carl Bob Xavier 6 Yann 3... sorted by item count Repeat for all users until #changes β RCSAlice 2 top γ candidates in RCSAlice by item count Dave 1 current neighborhood C sim(a, ) = 0.9 B 0.4 D 0.3 X Y

24 Alice Carl Bob Xavier 6 Yann 3... sorted by item count Repeat for all users until #changes β RCSAlice top γ candidates in RCSAlice by item count 2 Dave 1 current neighborhood C sim(a, ) = 0.9 B 0.4 D 0.3 X Y top k by sim Alice Carl C 0.9 Xavier X Y B 0.4 D 0.3 Yann 4 new neighborhood 24

25 Alice Bob Carl Xavier 6 Yann 3... sorted by item count Repeat for all users until #changes β RCSAlice 2 top γ candidates in RCSAlice by item count Dave Indexing followed by "greedy" iteration Indexing followed by "greedy" iteration C B D X Y 1 current neighborhood sim(a, ) = Trivially Trivially parallelizable parallelizable ++ highly highly local by sim 3 top klocal Alice Carl C O( U B D X Y RCS ) Indexing: O( E ) Indexing: O( E ) Iteration: Iteration: O( U RCS ) Xavier Yann 4 new neighborhood 25

26 Outline The problem: KNN graph construction The intuition: Is greed all there is? KIFF: K-nearest neighbor Fast and efficient Evaluation 26

27 Evaluation: Datasets

28 Evaluation: Datasets Long Long tail tail profile profile size size distribution distribution

29 Evaluation: Metrics Wall-clock computation time Recall : ideal KNN neighborhood for user u : approximated KNN neighborhood for user u Scan rate 29

30 Performance Details 30

31 Performance Details Much Much reduced reduced scan scan rate rate 31

32 Overall Performance [DML11] [BFGKP14] Faster Faster (x14), (x14), Better Better (+20%) (+20%)

33 Execution time Arxiv Wikipedia

34 KIFF's Scan Rate Arxiv Dataset KIFF: KIFF: First First iterations iterations yield yield highest highest gains gains 34

35 Impact of RCS on Bootstrap Iteration 0 Bob 8 Dave 7... sorted by item count RCSAlice 35

36 Repeat for all users until #changes β Termination Criteria Vertical bars: RCS truncation imposed by KIFF Termination Termination only only impacts impacts minority minority of of users users 36

37 Effect of Density 37

38 Effect of Density Scan Scan rate rate grows grows with with density, density, hurting hurting perf perf 38

39 Conclusion Novel KNN construction algorithm Intuition: reduce similarity computations Faster (x14) and more accurate (+20%) than SotA Performs best on sparse datasets 39

40 Some References [JMB09] M. Jelasity, A. Montresor, and O. Babaoglu T-Man: Gossip-based fast overlay topology construction. Comput. Netw. 53, 13 (August 2009), [VS05] S. Voulgaris and M. v. Steen, Epidemic-style management of semantic overlays for content-based searching, in Euro-Par, 2005, pp [DML11] W. Dong, C. Moses, and K. Li, Efficient k-nearest neighbor graph construction for generic similarity measures, in WWW, 2011, pp [BFGKP14] A. Boutet, D. Frey, R. Guerraoui, A.-M. Kermarrec, and R. Patra, HyRec: Leveraging Browsers for Scalable Recommenders, in Middleware, 2014, pp

FStream: a decentralized and social music streamer

FStream: a decentralized and social music streamer FStream: a decentralized and social music streamer Antoine Boutet, Konstantinos Kloudas, Anne-Marie Kermarrec To cite this version: Antoine Boutet, Konstantinos Kloudas, Anne-Marie Kermarrec. FStream:

More information

Nearest Neighbors Graph Construction: Peer Sampling to the Rescue

Nearest Neighbors Graph Construction: Peer Sampling to the Rescue Nearest Neighbors Graph Construction: Peer Sampling to the Rescue Yahya Benkaouz, Mohammed Erradi, Anne-Marie Kermarrec To cite this version: Yahya Benkaouz, Mohammed Erradi, Anne-Marie Kermarrec. Nearest

More information

Approximate Nearest Neighbor Search. Deng Cai Zhejiang University

Approximate Nearest Neighbor Search. Deng Cai Zhejiang University Approximate Nearest Neighbor Search Deng Cai Zhejiang University The Era of Big Data How to Find Things Quickly? Web 1.0 Text Search Sparse feature Inverted Index How to Find Things Quickly? Web 2.0, 3.0

More information

A P2P REcommender system based on Gossip Overlays (PREGO)

A P2P REcommender system based on Gossip Overlays (PREGO) 10 th IEEE INTERNATIONAL CONFERENCE ON COMPUTER AND INFORMATION TECHNOLOGY Bradford,UK, 29 June - 1 July, 2010 Ranieri Baraglia, Patrizio Dazzi, Matteo Mordacchini ISTI,CNR, Pisa,Italy Laura Ricci University

More information

Fast Topology Management in Large Overlay Networks

Fast Topology Management in Large Overlay Networks Topology as a key abstraction Fast Topology Management in Large Overlay Networks Ozalp Babaoglu Márk Jelasity Alberto Montresor Dipartimento di Scienze dell Informazione Università di Bologna! Topology

More information

Machine Learning. Nonparametric methods for Classification. Eric Xing , Fall Lecture 2, September 12, 2016

Machine Learning. Nonparametric methods for Classification. Eric Xing , Fall Lecture 2, September 12, 2016 Machine Learning 10-701, Fall 2016 Nonparametric methods for Classification Eric Xing Lecture 2, September 12, 2016 Reading: 1 Classification Representing data: Hypothesis (classifier) 2 Clustering 3 Supervised

More information

Lecture 24: Image Retrieval: Part II. Visual Computing Systems CMU , Fall 2013

Lecture 24: Image Retrieval: Part II. Visual Computing Systems CMU , Fall 2013 Lecture 24: Image Retrieval: Part II Visual Computing Systems Review: K-D tree Spatial partitioning hierarchy K = dimensionality of space (below: K = 2) 3 2 1 3 3 4 2 Counts of points in leaf nodes Nearest

More information

DISTRIBUTED SYSTEMS Principles and Paradigms Second Edition ANDREW S. TANENBAUM MAARTEN VAN STEEN. Chapter 2 ARCHITECTURES

DISTRIBUTED SYSTEMS Principles and Paradigms Second Edition ANDREW S. TANENBAUM MAARTEN VAN STEEN. Chapter 2 ARCHITECTURES DISTRIBUTED SYSTEMS Principles and Paradigms Second Edition ANDREW S. TANENBAUM MAARTEN VAN STEEN Chapter 2 ARCHITECTURES Architectural Styles Important styles of architecture for distributed systems Layered

More information

Learning independent, diverse binary hash functions: pruning and locality

Learning independent, diverse binary hash functions: pruning and locality Learning independent, diverse binary hash functions: pruning and locality Ramin Raziperchikolaei and Miguel Á. Carreira-Perpiñán Electrical Engineering and Computer Science University of California, Merced

More information

Gossip Protocols. Márk Jelasity. Hungarian Academy of Sciences and University of Szeged, Hungary

Gossip Protocols. Márk Jelasity. Hungarian Academy of Sciences and University of Szeged, Hungary Gossip Protocols Márk Jelasity Hungarian Academy of Sciences and University of Szeged, Hungary Introduction Gossip-like phenomena are commonplace human gossip epidemics (virus spreading, etc) computer

More information

WebGC Gossiping on Browsers without a Server [Live Demo/Poster]

WebGC Gossiping on Browsers without a Server [Live Demo/Poster] WebGC Gossiping on Browsers without a Server [Live Demo/Poster] Raziel Carvajal-Gómez, Davide Frey, Matthieu Simonin, Anne-Marie Kermarrec To cite this version: Raziel Carvajal-Gómez, Davide Frey, Matthieu

More information

Distribution-free Predictive Approaches

Distribution-free Predictive Approaches Distribution-free Predictive Approaches The methods discussed in the previous sections are essentially model-based. Model-free approaches such as tree-based classification also exist and are popular for

More information

CS246: Mining Massive Datasets Jure Leskovec, Stanford University

CS246: Mining Massive Datasets Jure Leskovec, Stanford University CS246: Mining Massive Datasets Jure Leskovec, Stanford University http://cs246.stanford.edu [Kumar et al. 99] 2/13/2013 Jure Leskovec, Stanford CS246: Mining Massive Datasets, http://cs246.stanford.edu

More information

Constructing Overlay Networks through Gossip

Constructing Overlay Networks through Gossip Constructing Overlay Networks through Gossip Márk Jelasity Università di Bologna Project funded by the Future and Emerging Technologies arm of the IST Programme The Four Main Theses 1: Topology (network

More information

CLSH: Cluster-based Locality-Sensitive Hashing

CLSH: Cluster-based Locality-Sensitive Hashing CLSH: Cluster-based Locality-Sensitive Hashing Xiangyang Xu Tongwei Ren Gangshan Wu Multimedia Computing Group, State Key Laboratory for Novel Software Technology, Nanjing University xiangyang.xu@smail.nju.edu.cn

More information

Introduction to Data Mining

Introduction to Data Mining Introduction to Data Mining Lecture #7: Recommendation Content based & Collaborative Filtering Seoul National University In This Lecture Understand the motivation and the problem of recommendation Compare

More information

T-Man: Gossip-based Overlay Topology Management

T-Man: Gossip-based Overlay Topology Management T-Man: Gossip-based Overlay Topology Management Márk Jelasity and Ozalp Babaoglu University of Bologna, Dipartimento di Scienze dell Informazione Mura Anteo Zamboni 7, 4026 Bologna, Italy jelasity,babaoglu@cs.unibo.it

More information

over Multi Label Images

over Multi Label Images IBM Research Compact Hashing for Mixed Image Keyword Query over Multi Label Images Xianglong Liu 1, Yadong Mu 2, Bo Lang 1 and Shih Fu Chang 2 1 Beihang University, Beijing, China 2 Columbia University,

More information

PUBLISHER Subscriber system is an event notification service

PUBLISHER Subscriber system is an event notification service A Bandwidth Aware Topology Generation Mechanism for Peer-to-Peer based Publish-Subscribe Systems Abhigyan, Joydeep Chandra, Niloy Ganguly Department of Computer Science & Engineering, Indian Institute

More information

ACM MM Dong Liu, Shuicheng Yan, Yong Rui and Hong-Jiang Zhang

ACM MM Dong Liu, Shuicheng Yan, Yong Rui and Hong-Jiang Zhang ACM MM 2010 Dong Liu, Shuicheng Yan, Yong Rui and Hong-Jiang Zhang Harbin Institute of Technology National University of Singapore Microsoft Corporation Proliferation of images and videos on the Internet

More information

Hashing with Graphs. Sanjiv Kumar (Google), and Shih Fu Chang (Columbia) June, 2011

Hashing with Graphs. Sanjiv Kumar (Google), and Shih Fu Chang (Columbia) June, 2011 Hashing with Graphs Wei Liu (Columbia Columbia), Jun Wang (IBM IBM), Sanjiv Kumar (Google), and Shih Fu Chang (Columbia) June, 2011 Overview Graph Hashing Outline Anchor Graph Hashing Experiments Conclusions

More information

High Dimensional Indexing by Clustering

High Dimensional Indexing by Clustering Yufei Tao ITEE University of Queensland Recall that, our discussion so far has assumed that the dimensionality d is moderately high, such that it can be regarded as a constant. This means that d should

More information

Cloud Computing: "network access to shared pool of configurable computing resources"

Cloud Computing: network access to shared pool of configurable computing resources Large-Scale Networks Gossip-based Protocols Consistency for Large-Scale Data Replication Uwe Roehm / Vincent Gramoli School of Information Technologies The University of Sydney Page 1 Cloud Computing:

More information

T-Man: Gossip-Based Overlay Topology Management

T-Man: Gossip-Based Overlay Topology Management T-Man: Gossip-Based Overlay Topology Management Márk Jelasity and Ozalp Babaoglu University of Bologna, Dipartimento di Scienze dell Informazione, Mura Anteo Zamboni 7, 4026 Bologna, Italy {jelasity, babaoglu}@cs.unibo.it

More information

CS246: Mining Massive Datasets Jure Leskovec, Stanford University

CS246: Mining Massive Datasets Jure Leskovec, Stanford University CS6: Mining Massive Datasets Jure Leskovec, Stanford University http://cs6.stanford.edu //8 Jure Leskovec, Stanford CS6: Mining Massive Datasets High dim. data Graph data Infinite data Machine learning

More information

Mining of Massive Datasets Jure Leskovec, Anand Rajaraman, Jeff Ullman Stanford University Infinite data. Filtering data streams

Mining of Massive Datasets Jure Leskovec, Anand Rajaraman, Jeff Ullman Stanford University  Infinite data. Filtering data streams /9/7 Note to other teachers and users of these slides: We would be delighted if you found this our material useful in giving your own lectures. Feel free to use these slides verbatim, or to modify them

More information

Performance Metrics. 1 cycle. 1 cycle. Computer B performs more instructions per second, thus it is the fastest for this program.

Performance Metrics. 1 cycle. 1 cycle. Computer B performs more instructions per second, thus it is the fastest for this program. Parallel Programming WS6 HOMEWORK (with solutions) Performance Metrics Basic concepts. Performance. Suppose we have two computers A and B. Computer A has a clock cycle of ns and performs on average 2 instructions

More information

Overlay Management for Fully Distributed User-based Collaborative Filtering

Overlay Management for Fully Distributed User-based Collaborative Filtering Overlay Management for Fully Distributed User-based Collaborative Filtering Róbert Ormándi 1, István Hegedűs 1 and Márk Jelasity 2 1 University of Szeged, Hungary {ormandi,ihegedus}@inf.u-szeged.hu 2 University

More information

Supervised Learning: K-Nearest Neighbors and Decision Trees

Supervised Learning: K-Nearest Neighbors and Decision Trees Supervised Learning: K-Nearest Neighbors and Decision Trees Piyush Rai CS5350/6350: Machine Learning August 25, 2011 (CS5350/6350) K-NN and DT August 25, 2011 1 / 20 Supervised Learning Given training

More information

Optimizing Out-of-Core Nearest Neighbor Problems on Multi-GPU Systems Using NVLink

Optimizing Out-of-Core Nearest Neighbor Problems on Multi-GPU Systems Using NVLink Optimizing Out-of-Core Nearest Neighbor Problems on Multi-GPU Systems Using NVLink Rajesh Bordawekar IBM T. J. Watson Research Center bordaw@us.ibm.com Pidad D Souza IBM Systems pidsouza@in.ibm.com 1 Outline

More information

T-Man: Gossip-based Fast Overlay Topology Construction

T-Man: Gossip-based Fast Overlay Topology Construction T-Man: Gossip-based Fast Overlay Topology Construction Márk Jelasity University of Szeged, Hungary jelasity@inf.u-szeged.hu Ozalp Babaoglu University of Bologna, Italy babaoglu@cs.unibo.it Alberto Montresor

More information

Unsupervised Learning of Spatiotemporally Coherent Metrics

Unsupervised Learning of Spatiotemporally Coherent Metrics Unsupervised Learning of Spatiotemporally Coherent Metrics Ross Goroshin, Joan Bruna, Jonathan Tompson, David Eigen, Yann LeCun arxiv 2015. Presented by Jackie Chu Contributions Insight between slow feature

More information

Locality- Sensitive Hashing Random Projections for NN Search

Locality- Sensitive Hashing Random Projections for NN Search Case Study 2: Document Retrieval Locality- Sensitive Hashing Random Projections for NN Search Machine Learning for Big Data CSE547/STAT548, University of Washington Sham Kakade April 18, 2017 Sham Kakade

More information

CS178: Machine Learning and Data Mining. Complexity & Nearest Neighbor Methods

CS178: Machine Learning and Data Mining. Complexity & Nearest Neighbor Methods + CS78: Machine Learning and Data Mining Complexity & Nearest Neighbor Methods Prof. Erik Sudderth Some materials courtesy Alex Ihler & Sameer Singh Machine Learning Complexity and Overfitting Nearest

More information

Kleinberg s Small-World Networks. Normalization constant have to be calculated:

Kleinberg s Small-World Networks. Normalization constant have to be calculated: Kleinberg s Small-World Networks Normalization constant have to be calculated: r v u d v u P ), ( 1 ~ ) ( Z v u d v u P r 1 ), ( 1 ) ( u i r i u d Z ), ( 1 Example Choose among 3 friends (1-dimension)

More information

Build One, Get One Free: Leveraging the Coexistence of Multiple P2P Overlay Networks

Build One, Get One Free: Leveraging the Coexistence of Multiple P2P Overlay Networks Build One, Get One Free: Leveraging the Coexistence of Multiple PP Overlay Networks Balasubramaneyam Maniymaran, Dept. of Electrical and Computer Eng., McGill Universiy, Montreal, QC, Canada. bmaniy@cs.mcgill.ca

More information

Review: Identification of cell types from single-cell transcriptom. method

Review: Identification of cell types from single-cell transcriptom. method Review: Identification of cell types from single-cell transcriptomes using a novel clustering method University of North Carolina at Charlotte October 12, 2015 Brief overview Identify clusters by merging

More information

Clustering Billions of Images with Large Scale Nearest Neighbor Search

Clustering Billions of Images with Large Scale Nearest Neighbor Search Clustering Billions of Images with Large Scale Nearest Neighbor Search Ting Liu, Charles Rosenberg, Henry A. Rowley IEEE Workshop on Applications of Computer Vision February 2007 Presented by Dafna Bitton

More information

Chapter 8: GPS Clustering and Analytics

Chapter 8: GPS Clustering and Analytics Chapter 8: GPS Clustering and Analytics Location information is crucial for analyzing sensor data and health inferences from mobile and wearable devices. For example, let us say you monitored your stress

More information

Thanks to Jure Leskovec, Anand Rajaraman, Jeff Ullman

Thanks to Jure Leskovec, Anand Rajaraman, Jeff Ullman Thanks to Jure Leskovec, Anand Rajaraman, Jeff Ullman http://www.mmds.org Overview of Recommender Systems Content-based Systems Collaborative Filtering J. Leskovec, A. Rajaraman, J. Ullman: Mining of Massive

More information

Cosine Approximate Nearest Neighbors

Cosine Approximate Nearest Neighbors Cosine Approximate Nearest Neighbors David C. Anastasiu Department of Computer Engineering San José State University, San José, CA, USA Email: david.anastasiu@sjsu.edu Abstract Cosine similarity graph

More information

Exploring the Structure of Data at Scale. Rudy Agovic, PhD CEO & Chief Data Scientist at Reliancy January 16, 2019

Exploring the Structure of Data at Scale. Rudy Agovic, PhD CEO & Chief Data Scientist at Reliancy January 16, 2019 Exploring the Structure of Data at Scale Rudy Agovic, PhD CEO & Chief Data Scientist at Reliancy January 16, 2019 Outline Why exploration of large datasets matters Challenges in working with large data

More information

De#anonymizing,Social,Networks, and,inferring,private,attributes, Using,Knowledge,Graphs,

De#anonymizing,Social,Networks, and,inferring,private,attributes, Using,Knowledge,Graphs, De#anonymizing,Social,Networks, and,inferring,private,attributes, Using,Knowledge,Graphs, Jianwei Qian Illinois Tech Chunhong Zhang BUPT Xiang#Yang Li USTC,/Illinois Tech Linlin Chen Illinois Tech Outline

More information

Predictive Indexing for Fast Search

Predictive Indexing for Fast Search Predictive Indexing for Fast Search Sharad Goel, John Langford and Alex Strehl Yahoo! Research, New York Modern Massive Data Sets (MMDS) June 25, 2008 Goel, Langford & Strehl (Yahoo! Research) Predictive

More information

Social Network Analysis With igraph & R. Ofrit Lesser December 11 th, 2014

Social Network Analysis With igraph & R. Ofrit Lesser December 11 th, 2014 Social Network Analysis With igraph & R Ofrit Lesser ofrit.lesser@gmail.com December 11 th, 2014 Outline The igraph R package Basic graph concepts What can you do with igraph? Construction Attributes Centrality

More information

Boosting the Performance of FPGA-based Graph Processor using Hybrid Memory Cube: A Case for Breadth First Search

Boosting the Performance of FPGA-based Graph Processor using Hybrid Memory Cube: A Case for Breadth First Search Boosting the Performance of FPGA-based Graph Processor using Hybrid Memory Cube: A Case for Breadth First Search Jialiang Zhang, Soroosh Khoram and Jing Li 1 Outline Background Big graph analytics Hybrid

More information

Naïve Bayes for text classification

Naïve Bayes for text classification Road Map Basic concepts Decision tree induction Evaluation of classifiers Rule induction Classification using association rules Naïve Bayesian classification Naïve Bayes for text classification Support

More information

K Nearest Neighbor Wrap Up K- Means Clustering. Slides adapted from Prof. Carpuat

K Nearest Neighbor Wrap Up K- Means Clustering. Slides adapted from Prof. Carpuat K Nearest Neighbor Wrap Up K- Means Clustering Slides adapted from Prof. Carpuat K Nearest Neighbor classification Classification is based on Test instance with Training Data K: number of neighbors that

More information

Chord on Demand. Mark Jelasity University of Bologna, Italy.

Chord on Demand. Mark Jelasity University of Bologna, Italy. Chord on Demand Alberto Montresor University of Bologna, Italy montresor@cs.unibo.it Mark Jelasity University of Bologna, Italy jelasity@cs.unibo.it Ozalp Babaoglu University of Bologna, Italy babaoglu@cs.unibo.it

More information

Analytical Modeling of Parallel Systems. To accompany the text ``Introduction to Parallel Computing'', Addison Wesley, 2003.

Analytical Modeling of Parallel Systems. To accompany the text ``Introduction to Parallel Computing'', Addison Wesley, 2003. Analytical Modeling of Parallel Systems To accompany the text ``Introduction to Parallel Computing'', Addison Wesley, 2003. Topic Overview Sources of Overhead in Parallel Programs Performance Metrics for

More information

CS246: Mining Massive Datasets Jure Leskovec, Stanford University

CS246: Mining Massive Datasets Jure Leskovec, Stanford University CS6: Mining Massive Datasets Jure Leskovec, Stanford University http://cs6.stanford.edu Customer X Buys Metalica CD Buys Megadeth CD Customer Y Does search on Metalica Recommender system suggests Megadeth

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

Image Analysis & Retrieval. CS/EE 5590 Special Topics (Class Ids: 44873, 44874) Fall 2016, M/W Lec 18.

Image Analysis & Retrieval. CS/EE 5590 Special Topics (Class Ids: 44873, 44874) Fall 2016, M/W Lec 18. Image Analysis & Retrieval CS/EE 5590 Special Topics (Class Ids: 44873, 44874) Fall 2016, M/W 4-5:15pm@Bloch 0012 Lec 18 Image Hashing Zhu Li Dept of CSEE, UMKC Office: FH560E, Email: lizhu@umkc.edu, Ph:

More information

Architectural Approaches for Social Networks. Presenter: Qian Li

Architectural Approaches for Social Networks. Presenter: Qian Li Architectural Approaches for Social Networks Presenter: Qian Li The Gossple Anonymous Social Network Marin Bertier, Davide Frey, Rachid Guerraoui, AnneMarie Kermarrec and Vincent Leroy Gossple overview

More information

Epidemic-Style Management of Semantic Overlays for Content-Based Searching

Epidemic-Style Management of Semantic Overlays for Content-Based Searching Epidemic-Style Management of Semantic Overlays for Content-Based Searching Spyros Voulgaris and Maarten van Steen Vrije Universiteit Amsterdam Department of Computer Science De Boelelaan 1081a, 1081HV

More information

A Systems View of Large- Scale 3D Reconstruction

A Systems View of Large- Scale 3D Reconstruction Lecture 23: A Systems View of Large- Scale 3D Reconstruction Visual Computing Systems Goals and motivation Construct a detailed 3D model of the world from unstructured photographs (e.g., Flickr, Facebook)

More information

Chord on Demand. Ozalp Babaoglu University of Bologna, Italy. Alberto Montresor University of Bologna, Italy

Chord on Demand. Ozalp Babaoglu University of Bologna, Italy. Alberto Montresor University of Bologna, Italy Chord on Demand Alberto Montresor University of Bologna, Italy montresor@cs.unibo.it Márk Jelasity University of Bologna, Italy jelasity@cs.unibo.it Ozalp Babaoglu University of Bologna, Italy babaoglu@cs.unibo.it

More information

Machine Learning and Pervasive Computing

Machine Learning and Pervasive Computing Stephan Sigg Georg-August-University Goettingen, Computer Networks 17.12.2014 Overview and Structure 22.10.2014 Organisation 22.10.3014 Introduction (Def.: Machine learning, Supervised/Unsupervised, Examples)

More information

Multi-Stage Rocchio Classification for Large-scale Multilabeled

Multi-Stage Rocchio Classification for Large-scale Multilabeled Multi-Stage Rocchio Classification for Large-scale Multilabeled Text data Dong-Hyun Lee Nangman Computing, 117D Garden five Tools, Munjeong-dong Songpa-gu, Seoul, Korea dhlee347@gmail.com Abstract. Large-scale

More information

Accelerated Machine Learning Algorithms in Python

Accelerated Machine Learning Algorithms in Python Accelerated Machine Learning Algorithms in Python Patrick Reilly, Leiming Yu, David Kaeli reilly.pa@husky.neu.edu Northeastern University Computer Architecture Research Lab Outline Motivation and Goals

More information

CS570: Introduction to Data Mining

CS570: Introduction to Data Mining CS570: Introduction to Data Mining Classification Advanced Reading: Chapter 8 & 9 Han, Chapters 4 & 5 Tan Anca Doloc-Mihu, Ph.D. Slides courtesy of Li Xiong, Ph.D., 2011 Han, Kamber & Pei. Data Mining.

More information

Small-World Networks: Is there a mismatch between theory and practice?

Small-World Networks: Is there a mismatch between theory and practice? Small-World Networks: Is there a mismatch between theory and practice? François Bonnet, Anne-Marie Kermarrec, Michel Raynal To cite this version: François Bonnet, Anne-Marie Kermarrec, Michel Raynal. Small-World

More information

Instance-based Learning CE-717: Machine Learning Sharif University of Technology. M. Soleymani Fall 2015

Instance-based Learning CE-717: Machine Learning Sharif University of Technology. M. Soleymani Fall 2015 Instance-based Learning CE-717: Machine Learning Sharif University of Technology M. Soleymani Fall 2015 Outline Non-parametric approach Unsupervised: Non-parametric density estimation Parzen Windows K-Nearest

More information

The Bootstrapping Service

The Bootstrapping Service The Bootstrapping Service Márk Jelasity University of Bologna, Italy jelasity@cs.unibo.it Alberto Montresor University of Trento, Italy montreso@dit.unitn.it Ozalp Babaoglu University of Bologna, Italy

More information

Data Mining Classification: Alternative Techniques. Lecture Notes for Chapter 4. Instance-Based Learning. Introduction to Data Mining, 2 nd Edition

Data Mining Classification: Alternative Techniques. Lecture Notes for Chapter 4. Instance-Based Learning. Introduction to Data Mining, 2 nd Edition Data Mining Classification: Alternative Techniques Lecture Notes for Chapter 4 Instance-Based Learning Introduction to Data Mining, 2 nd Edition by Tan, Steinbach, Karpatne, Kumar Instance Based Classifiers

More information

Nearest Neighbor Classification. Machine Learning Fall 2017

Nearest Neighbor Classification. Machine Learning Fall 2017 Nearest Neighbor Classification Machine Learning Fall 2017 1 This lecture K-nearest neighbor classification The basic algorithm Different distance measures Some practical aspects Voronoi Diagrams and Decision

More information

The Out-of-core KNN Awakens: The light side of computation force on large datasets

The Out-of-core KNN Awakens: The light side of computation force on large datasets The Out-of-core KNN Awakens: The light side of computation force on large datasets Nitin Chiluka, Anne-Marie Kermarrec, Javier Olivares To cite this version: Nitin Chiluka, Anne-Marie Kermarrec, Javier

More information

GPU ACCELERATED SELF-JOIN FOR THE DISTANCE SIMILARITY METRIC

GPU ACCELERATED SELF-JOIN FOR THE DISTANCE SIMILARITY METRIC GPU ACCELERATED SELF-JOIN FOR THE DISTANCE SIMILARITY METRIC MIKE GOWANLOCK NORTHERN ARIZONA UNIVERSITY SCHOOL OF INFORMATICS, COMPUTING & CYBER SYSTEMS BEN KARSIN UNIVERSITY OF HAWAII AT MANOA DEPARTMENT

More information

Link Prediction in Graph Streams

Link Prediction in Graph Streams Peixiang Zhao, Charu C. Aggarwal, and Gewen He Florida State University IBM T J Watson Research Center Link Prediction in Graph Streams ICDE Conference, 2016 Graph Streams Graph Streams arise in a wide

More information

Going nonparametric: Nearest neighbor methods for regression and classification

Going nonparametric: Nearest neighbor methods for regression and classification Going nonparametric: Nearest neighbor methods for regression and classification STAT/CSE 46: Machine Learning Emily Fox University of Washington May 3, 208 Locality sensitive hashing for approximate NN

More information

Available online at ScienceDirect. Procedia Computer Science 78 (2016 )

Available online at  ScienceDirect. Procedia Computer Science 78 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 78 (2016 ) 595 602 International Conference on Information Security & Privacy (ICISP2015), 11-12 December 2015, Nagpur,

More information

Data Mining and Machine Learning: Techniques and Algorithms

Data Mining and Machine Learning: Techniques and Algorithms Instance based classification Data Mining and Machine Learning: Techniques and Algorithms Eneldo Loza Mencía eneldo@ke.tu-darmstadt.de Knowledge Engineering Group, TU Darmstadt International Week 2019,

More information

Algorithms for Nearest Neighbors

Algorithms for Nearest Neighbors Algorithms for Nearest Neighbors State-of-the-Art Yury Lifshits Steklov Institute of Mathematics at St.Petersburg Yandex Tech Seminar, April 2007 1 / 28 Outline 1 Problem Statement Applications Data Models

More information

Application of Random Walks to Decentralized Recommender Systems

Application of Random Walks to Decentralized Recommender Systems Application of Random Walks to Decentralized Recommender Systems Anne-Marie Kermarrec, Vincent Leroy, Afshin Moin, Christopher Thraves-Caro To cite this version: Anne-Marie Kermarrec, Vincent Leroy, Afshin

More information

Image Restoration using Markov Random Fields

Image Restoration using Markov Random Fields Image Restoration using Markov Random Fields Based on the paper Stochastic Relaxation, Gibbs Distributions and Bayesian Restoration of Images, PAMI, 1984, Geman and Geman. and the book Markov Random Field

More information

WHATSUP: A Decentralized Instant News Recommender

WHATSUP: A Decentralized Instant News Recommender 23 IEEE 27th International Symposium on Parallel & Distributed Processing WHATSUP: A Decentralized Instant News Recommender Antoine Boutet, Davide Frey, Rachid Guerraoui, Arnaud Jégou and Anne-Marie Kermarrec

More information

Clustering. Robert M. Haralick. Computer Science, Graduate Center City University of New York

Clustering. Robert M. Haralick. Computer Science, Graduate Center City University of New York Clustering Robert M. Haralick Computer Science, Graduate Center City University of New York Outline K-means 1 K-means 2 3 4 5 Clustering K-means The purpose of clustering is to determine the similarity

More information

Large-Scale Face Manifold Learning

Large-Scale Face Manifold Learning Large-Scale Face Manifold Learning Sanjiv Kumar Google Research New York, NY * Joint work with A. Talwalkar, H. Rowley and M. Mohri 1 Face Manifold Learning 50 x 50 pixel faces R 2500 50 x 50 pixel random

More information

Z-KNN Join for the Swiss Feed Database: a feasibility study

Z-KNN Join for the Swiss Feed Database: a feasibility study Z-KNN Join for the Swiss Feed Database: a feasibility study Francesco Luminati University Of Zurich, Switzerland francesco.luminati@uzh.ch 1 Introduction K-nearest neighbor query (knn) and k-nearest neighbor

More information

Nonparametric Clustering of High Dimensional Data

Nonparametric Clustering of High Dimensional Data Nonparametric Clustering of High Dimensional Data Peter Meer Electrical and Computer Engineering Department Rutgers University Joint work with Bogdan Georgescu and Ilan Shimshoni Robust Parameter Estimation:

More information

A Hybrid Peer-to-Peer Recommendation System Architecture Based on Locality-Sensitive Hashing

A Hybrid Peer-to-Peer Recommendation System Architecture Based on Locality-Sensitive Hashing A Hybrid Peer-to-Peer Recommendation System Architecture Based on Locality-Sensitive Hashing Alexander Smirnov, Andrew Ponomarev St. Petersburg Institute for Informatics and Automation of the Russian Academy

More information

T-Man: Gossip-based Fast Overlay Topology Construction

T-Man: Gossip-based Fast Overlay Topology Construction T-Man: Gossip-based Fast Overlay Topology Construction Márk Jelasity Research Group on AI, University of Szeged and HAS, PO Box 652, H-6701 Szeged, Hungary Alberto Montresor University of Trento, Italy

More information

Epidemic-style Management of Semantic Overlays for Content-Based Searching

Epidemic-style Management of Semantic Overlays for Content-Based Searching Epidemic-style Management of Semantic Overlays for Content-Based Searching Spyros Voulgaris Vrije Universiteit Amsterdam spyros@cs.vu.nl Maarten van Steen Vrije Universiteit Amsterdam steen@cs.vu.nl Abstract

More information

Introduction to Data Science Lecture 8 Unsupervised Learning. CS 194 Fall 2015 John Canny

Introduction to Data Science Lecture 8 Unsupervised Learning. CS 194 Fall 2015 John Canny Introduction to Data Science Lecture 8 Unsupervised Learning CS 194 Fall 2015 John Canny Outline Unsupervised Learning K-Means clustering DBSCAN Matrix Factorization Performance Machine Learning Supervised:

More information

PUB-2-SUB: A Content-Based Publish/Subscribe Framework for Cooperative P2P Networks

PUB-2-SUB: A Content-Based Publish/Subscribe Framework for Cooperative P2P Networks PUB-2-SUB: A Content-Based Publish/Subscribe Framework for Cooperative P2P Networks Duc A. Tran Cuong Pham Network Information Systems Lab (NISLab) Dept. of Computer Science University of Massachusetts,

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

Algorithms for Nearest Neighbors

Algorithms for Nearest Neighbors Algorithms for Nearest Neighbors Classic Ideas, New Ideas Yury Lifshits Steklov Institute of Mathematics at St.Petersburg http://logic.pdmi.ras.ru/~yura University of Toronto, July 2007 1 / 39 Outline

More information

Fractional Cascading in Wireless. Jie Gao Computer Science Department Stony Brook University

Fractional Cascading in Wireless. Jie Gao Computer Science Department Stony Brook University Fractional Cascading in Wireless Sensor Networks Jie Gao Computer Science Department Stony Brook University 1 Sensor Networks Large number of small devices for environment monitoring 2 My recent work Lightweight,

More information

Heterogeneous Gossip. Davide Frey Rachid Guerraoui Anne-Marie Kermarrec Boris Koldehofe Maxime Monod Martin Mogensen Vivien Quéma

Heterogeneous Gossip. Davide Frey Rachid Guerraoui Anne-Marie Kermarrec Boris Koldehofe Maxime Monod Martin Mogensen Vivien Quéma Heterogeneous Gossip Davide Frey Rachid Guerraoui Anne-Marie Kermarrec Boris Koldehofe Maxime Monod Martin Mogensen Vivien Quéma Outline Context Live Streaming Gossip Limitations Heterogeneous Gossip Protocol

More information

Sizing Sketches: A Rank-Based Analysis for Similarity Search

Sizing Sketches: A Rank-Based Analysis for Similarity Search Sizing Sketches: A Rank-Based Analysis for Similarity Search Zhe Wang, Wei Dong, William Josephson, Qin Lv, Moses Charikar, and Kai Li Department of Computer Science, Princeton University Princeton, NJ

More information

CS224W: Social and Information Network Analysis Project Report: Edge Detection in Review Networks

CS224W: Social and Information Network Analysis Project Report: Edge Detection in Review Networks CS224W: Social and Information Network Analysis Project Report: Edge Detection in Review Networks Archana Sulebele, Usha Prabhu, William Yang (Group 29) Keywords: Link Prediction, Review Networks, Adamic/Adar,

More information

Density Based Clustering Using Mutual K-nearest. Neighbors

Density Based Clustering Using Mutual K-nearest. Neighbors Density Based Clustering Using Mutual K-nearest Neighbors A thesis submitted to the Graduate School of the University of Cincinnati in partial fulfillment of the requirements for the degree of Master of

More information

CPS 110 Final Exam. Spring 2011

CPS 110 Final Exam. Spring 2011 CPS 110 Final Exam Spring 2011 Please answer all questions for a total of 300 points. Keep it clear and concise: answers are graded on content, not style. I expect that you can answer each question within

More information

Problem 1: Complexity of Update Rules for Logistic Regression

Problem 1: Complexity of Update Rules for Logistic Regression Case Study 1: Estimating Click Probabilities Tackling an Unknown Number of Features with Sketching Machine Learning for Big Data CSE547/STAT548, University of Washington Emily Fox January 16 th, 2014 1

More information

Explore Co-clustering on Job Applications. Qingyun Wan SUNet ID:qywan

Explore Co-clustering on Job Applications. Qingyun Wan SUNet ID:qywan Explore Co-clustering on Job Applications Qingyun Wan SUNet ID:qywan 1 Introduction In the job marketplace, the supply side represents the job postings posted by job posters and the demand side presents

More information

Decomposition of log-linear models

Decomposition of log-linear models Graphical Models, Lecture 5, Michaelmas Term 2009 October 27, 2009 Generating class Dependence graph of log-linear model Conformal graphical models Factor graphs A density f factorizes w.r.t. A if there

More information

Latent Variable Models for Structured Prediction and Content-Based Retrieval

Latent Variable Models for Structured Prediction and Content-Based Retrieval Latent Variable Models for Structured Prediction and Content-Based Retrieval Ariadna Quattoni Universitat Politècnica de Catalunya Joint work with Borja Balle, Xavier Carreras, Adrià Recasens, Antonio

More information

NDoT: Nearest Neighbor Distance Based Outlier Detection Technique

NDoT: Nearest Neighbor Distance Based Outlier Detection Technique NDoT: Nearest Neighbor Distance Based Outlier Detection Technique Neminath Hubballi 1, Bidyut Kr. Patra 2, and Sukumar Nandi 1 1 Department of Computer Science & Engineering, Indian Institute of Technology

More information

By Atul S. Kulkarni Graduate Student, University of Minnesota Duluth. Under The Guidance of Dr. Richard Maclin

By Atul S. Kulkarni Graduate Student, University of Minnesota Duluth. Under The Guidance of Dr. Richard Maclin By Atul S. Kulkarni Graduate Student, University of Minnesota Duluth Under The Guidance of Dr. Richard Maclin Outline Problem Statement Background Proposed Solution Experiments & Results Related Work Future

More information

CS246: Mining Massive Datasets Jure Leskovec, Stanford University

CS246: Mining Massive Datasets Jure Leskovec, Stanford University CS6: Mining Massive Datasets Jure Leskovec, Stanford University http://cs6.stanford.edu /7/0 Jure Leskovec, Stanford CS6: Mining Massive Datasets, http://cs6.stanford.edu High dim. data Graph data Infinite

More information