DS504/CS586: Big Data Analytics Recommender System

Size: px
Start display at page:

Download "DS504/CS586: Big Data Analytics Recommender System"

Transcription

1 Welcome to DS0/CS86: Big Data Analytics Recommender System Prof. Yanhua Li Time: 6:00pm 8:0pm Thu. Location: AK Fall 06

2 Example: Recommender Systems v Customer X Star War I Star War II v Customer Y Does search on Star War I Recommender system suggests Star War II from data collected about customer X J. Leskovec, A. Rajaraman, J. Ullman:

3 Recommendations Examples: Search Recommendations Items Products, web sites, blogs, news items, J. Leskovec, A. Rajaraman, J. Ullman:

4 From Scarcity to Abundance v Shelf space is a scarce commodity for traditional retailers Also: TV networks, movie theaters, v Web enables near-zero-cost dissemination of information about products From scarcity to abundance, e.g., Amazon, Target online, ebay, etc. v More choices necessitates better filters Recommendation engines J. Leskovec, A. Rajaraman, J. Ullman:

5 Types of Recommendations v Editorial and hand curated List of favorites Lists of essential items v Simple aggregates Top 0, Most Popular, Recent Uploads v Tailored to individual users Amazon, Netflix, J. Leskovec, A. Rajaraman, J. Ullman:

6 Formal Model v X = set of Customers v S = set of Items v Utility function u: X S à R R = set of ratings R is a totally ordered set e.g., 0- stars, real number in [0,] 6 J. Leskovec, A. Rajaraman, J. Ullman:

7 Utility Matrix Avatar LOTR Matrix Pirates Alice 0. Bob Carol 0. David 0. 7 J. Leskovec, A. Rajaraman, J. Ullman:

8 Key Problems v () Gathering known ratings for matrix How to collect the data in the utility matrix v () Estimate unknown ratings from the known ones Mainly interested in high unknown ratings We are not interested in knowing what you don t like but what you like v () Evaluating estimation methods How to measure success/performance of recommendation methods 8 J. Leskovec, A. Rajaraman, J. Ullman:

9 () Gathering Ratings v Explicit Ask people to rate items Doesn t work well in practice people can t be bothered v Implicit Learn ratings from user actions E.g., purchase implies high rating What about low ratings? 9 J. Leskovec, A. Rajaraman, J. Ullman:

10 () Estimating Utilities v Key problem: Utility matrix U is sparse Most people have not rated most items Cold start: New items have no ratings New users have no history v Approaches to recommender systems: ) Content-based ) Collaborative filtering 0 J. Leskovec, A. Rajaraman, J. Ullman:

11 Content-based Recommender Systems

12 Content-based Recommendations v Main idea: Recommend items to customer x similar to previous items rated highly by x Look at x s items vs all items Example: v Movie recommendations Recommend movies with same actor(s), director, genre, v Websites, blogs, news Recommend other sites with similar content J. Leskovec, A. Rajaraman, J. Ullman:

13 Plan of Action Item profiles likes recommend build match Red Circles Triangles User profile J. Leskovec, A. Rajaraman, J. Ullman:

14 Item Profiles v For each item, create an item profile v Profile is a set (vector) of features Movies: author, title, actor, director, Text: Set of important words in document v How to pick important features? Usual heuristic from text mining is TF-IDF (Term frequency * Inverse Doc Frequency) Term Feature Document Item J. Leskovec, A. Rajaraman, J. Ullman:

15 Sidenote: TF-IDF f ij = frequency of term (feature) i in doc j n i = number of docs that mention term i N = total number of docs Note: we normalize TF by the frequency of the most frequent term to discount for longer documents TF-IDF score: w ij = TF ij IDF i Doc profile = set of words with highest TF- IDF scores, together with their scores wj = (w j,..., wij,..., wkj) J. Leskovec, A. Rajaraman, J. Ullman:

16 User Profiles and Prediction v User profile possibilities: Weighted average of rated item profiles Variations: weight by difference from average rating for item wx = wj(rxj r x ) j=...nx v Prediction heuristic: Given user profile w x and item profile w j, estimate rxj = cos(wx, wj) = wxwj/ wj wx J. Leskovec, A. Rajaraman, J. Ullman: 6

17 Pros: Content-based Approach v +: No need for data on other users v +: Able to recommend to users with unique tastes v +: Able to recommend new & unpopular items No item cold-start v +: Able to provide explanations Can provide explanations of recommended items by listing content-features that caused an item to be recommended J. Leskovec, A. Rajaraman, J. Ullman: 7

18 Cons: Content-based Approach v : Finding the appropriate features is hard E.g., images, movies, music v : Recommendations for new users How to build a user profile? User code-start problem v : Overspecialization Never recommends items outside user s content profile People might have multiple interests Unable to exploit quality judgments of other users J. Leskovec, A. Rajaraman, J. Ullman: 8

19 Collaborative Filtering Harnessing quality judgments of other users

20 Collaborative Filtering v Consider user x v Find set N of other users whose ratings are similar to x s ratings v Estimate x s ratings based on ratings of users in N x N J. Leskovec, A. Rajaraman, J. Ullman: 0

21 Finding Similar Users r x = [*, _, _, *, ***] r y = [*, _, **, **, _] v Let r x be the vector of user x s ratings v Jaccard similarity measure r x, r y as sets: r x = {,, } r y = {,, } Problem: Ignore the value of the ratings: v Cosine Similarity measure Sim(x,y)=cos(r x, r y )=r x r y / r x r y Problem: Treading missing ratings as negatives v Pearson correlation coefficient r x, r y as points: r x = {, 0, 0,, } r y = {, 0,,, 0} v Sim(x,y)=(r x -r x,ave )(r y -r y,ave )/ r x -r x,ave r y -r y,ave

22 Cosine sim: Similarity Metric v Intuitively we want: sim(a, B) > sim(a, C) v Jaccard similarity: / < / v Cosine similarity: 0.86 > 0. Considers missing ratings as negative Solution: subtract the (row) mean Notice cosine sim. is correlation when data is centered at 0

23 User-User Collaborative Filtering For user u, find other similar users Estimate rating for item i based on ratings from similar users pred(u,i) = n neighbors(u) n neighbors(u) sim(u, n) rni sim(u, n) Sim(u,n) similarity of user u and n r ui rating of user u on item i neighbor(u) set of users similar to user u J. Leskovec, A. Rajaraman, J. Ullman:

24 Item-Item Collaborative Filtering v So far: User-user collaborative filtering v Another view: Item-item For item i, find other similar items Estimate rating for item i based on ratings for similar items Can use same similarity metrics and prediction functions as in user-user model r xi = j N ( i; x) s ij j N ( i; x) s r ij xj s ij similarity of items i and j r xj rating of user x on item j N(i;x) set items rated by x similar to i J. Leskovec, A. Rajaraman, J. Ullman:

25 Item-Item CF ( N =) users movies - unknown rating - rating between to J. Leskovec, A. Rajaraman, J. Ullman:

26 Item-Item CF ( N =) ? 6 users - estimate rating of movie by user 6 J. Leskovec, A. Rajaraman, J. Ullman: movies

27 Item-Item CF ( N =) users? sim(,m) movies Neighbor selection: Identify movies similar to movie, rated by user Here we use Pearson correlation as similarity: ) Subtract mean rating m i from each movie i m = (++++)/ =.6 row : [-.6, 0, -0.6, 0, 0,., 0, 0,., 0, 0., 0] ) Compute cosine similarities between rows 7

28 Item-Item CF ( N =) users? sim(,m) movies Compute similarity weights: s, =0., s,6 =0.9 J. Leskovec, A. Rajaraman, J. Ullman: 8

29 Item-Item CF ( N =) users movies 6 Predict by taking weighted average: r. = (0.* + 0.9*) / (0.+0.9) =.6 J. Leskovec, A. Rajaraman, J. Ullman: 9

30 Item-Item vs. User-User Avatar LOTR Matrix Pirates Alice 0.8 Bob Carol David 0. In prac(ce, it has been observed that item-item oen works be8er than user-user Why? Items are simpler, users have mul0ple tastes J. Leskovec, A. Rajaraman, J. Ullman: 0

31 Pros/Cons of Collaborative Filtering v + Works for any kind of item No feature selection needed v - Cold Start: Need enough users in the system to find a match v - Sparsity: The user/ratings matrix is sparse Hard to find users that have rated the same items v - First rater: Cannot recommend an item that has not been previously rated New items, Esoteric items v - Popularity bias: Cannot recommend items to someone with unique taste Tends to recommend popular items J. Leskovec, A. Rajaraman, J. Ullman:

32 Hybrid Methods v Implement two or more different recommenders and combine predictions Perhaps using a linear model v Add content-based methods to collaborative filtering Item profiles for new item problem Demographics to deal with new user problem J. Leskovec, A. Rajaraman, J. Ullman:

33 Evaluation movies users J. Leskovec, A. Rajaraman, J. Ullman:

34 Evaluation users movies????? Test Data Set J. Leskovec, A. Rajaraman, J. Ullman:

35 Collaborative Filtering: Complexity v Expensive step is finding k most similar customers: O( X ) v Too expensive to do at runtime Could pre-compute v Naïve pre-computation takes time O(k X ) X set of customers v We already know how to do this! Near-neighbor search in high dimensions Clustering Dimensionality reduction J. Leskovec, A. Rajaraman, J. Ullman:

36 Location-based & Preference-Aware Recommendation Using Sparse Geo-Social Networking Data Jie Bao Yu Zheng Mohamed F. Mokbel Microsoft Research Asia Beijing, China Department of Computer Science &Engineering University of Minnesota

37 Background Loopt Foursquare Facebook Places v Location-based Social Networks Dianping Users share photos, comments or check-ins at a location Expanded rapidly, e.g., Foursquare gets over million check-ins every day

38 Introduction v v Location Recommendations in LBSN Recommend locations using a user s location histories and community opinions Location bridges gap between physical world & social networks Existing Solutions Based on item/user collaborative filtering Similar users gives the similar ratings to similar items users Visit some places User location histories So, what is the PROBLEM here? Build recommendation models Similar Users Similar Items based on the model of co-rating and co-visit Recommendatio n query + user location Why? Mao Ye, Peifeng Yin, Wang-Chien Lee: Location recommendation for location-based social networks. GIS00 stin J. Levandoski, Mohamed Sarwat, Ahmed Eldawy, and Mohamed F. Mokbel: LARS: A Location-Aware Recommender System. ICDE0

39 Motivation (/) v User-item rating/visiting matrix Millions of locations around the world Los Angeles New York City User U 0 U i L L L L m- L m- L m A user visit ~00 locations User location histories are locally clustered U j U n Recommendation queries target an area (very specific subset) Noulas, S. Scellato, C Mascolo and M Pontil An Empirical Study of Geographic User Activity Patterns in Foursquare (ICWSM 0).

40 Motivation (/) v User s activities are very limited in distant locations May NOT get any recommendations in some areas Things can get worse in NEW Areas (small cities and abroad) (Where you need recommendations the most)

41 Key Components in Location Recommendation. User position & locations around Movie Food Shopping. User Personal Interests/Preferences Recommender System. Social/Community Opinions

42 Our Main Ideas Movie Food Shopping User Personal Interests/Preferences Main idea #: Identify user preference using semantic information from the location history User position & locations around Main idea #: Use local experts & user preferences for recommendation Social/Community Opinions Main idea #: Discover local experts for different categories in a specific area

43 Offline Modeling User preferences discovery Movie Food Shopping User Personal Interests/Preferences Main idea #: Identify user preference using semantic information from the location history User position & locations around Main idea #: Use local experts & user preferences for recommendation Social/Community Opinions Main idea #: Discover local experts for different categories in a specific area

44 Users User preference discovery (/) Our Solution v A natural way to express a user s preference Check-ins Venues Categories E.g., Jie likes shopping, football... User preferences is not that spatial-aware. User preferences is more semantic v Can we extract such preferences from user locations? YES!.. Map Category Hierarchy (a) Overview of a location-based social network Category Name Number of sub-categories Arts & Entertainment 7 College & University Food 78 Great Outdoors 8 Home, Work, Other Nightlife Spot 0 Shop Travel Spot (b) Detailed location category hierarchy in FourSquare Millions of locations Hundreds of categories AND NOT limited only to the residence areas

45 User preference discovery (/) Weighted Category Hierarchy v User preferences discovery Location history Semantic information User preference hierarchy Use TF-IDF approach to minimize the bias Food Sport Pizza Coffee Bar Soccer

46 Offline Modeling (/) Social Knowledge Learning Movie Food Shopping User Personal Interests/Preferences Main idea #: Identify user preference using semantic information from the location history User position & locations around Main idea #: Use local experts & user preferences for recommendation Social/Community Opinions Main idea #: Discover local experts for different categories in a specific area

47 Offline Modeling (/) Social Knowledge Learning v Why local experts High quality Less number (Efficiency) v How to discover local experts Local knowledge (in an area) Speciality (in a category) Mutual Inference (HITS) User hub nodes Location authority nodes

48 Online Recommendation Movie Food Shopping User Personal Interests/Preferences Main idea #: Identify user preference using semantic information from the location history User position & locations around Main idea #: Use local experts & user preferences for recommendation Social/Community Opinions Main idea #: Discover local experts for different categories in a specific area

49 Online Recommendations (/)Candidate Selection v Select the candidate locations and local experts Food Sport Pizza Coffee Bar Soccer Candidate Local Experts More local experts are selected for the more preferred category

50 Online Recommendations (/) Location Rating Inference v Similarity Computing Overlaps: Different weights for different levels Diversity of user preferences Based on entropy theory c 0. c 0. c 0. c 0. c 0. c 0. c 0. c 0. c c 6 c 0 c c 6 c 8 c c 6 c 7 c 8 c c v (a) WCH of u (b) WCH of u (c) WCH of u Infer the ratings for the candidate locations H(u, l) is user u s entropy at level l P(c) is the probability that u visited

51 Experiments Data Set v v Data Sets 9,06 users and,8 tips in New York City (NYC), users and 0,78 tips in Los Angels (LA). Statistics v Visualization

52 Evaluation Framework v Evaluation Method v Evaluation Metrics

53 Experimental Results

54 Experimental Results v Efficiency

55 Conclusion v Location Recommendations Data sparsity is a big challenge in recommendation systems Location-awareness amplify the data sparsity challenge v Our Solution Take advantage of category information to overcome the sparsity Using the knowledge from the local experts Dynamically select the local experts for recommendation based on user location

56

57 CF: Common Practice r Before: xi = j N ( i; x) s j N ( i; x) ij s r ij xj v Define similarity s ij of items i and j v Select k nearest neighbors N(i; x) Items most similar to i, that were rated by x v Estimate rating r xi as the weighted average: r xi = b xi + j N ( i; x) s ij ( r j N ( i; x) xj s ij b xj ) baseline estimate μ = overall mean movie ra0ng for r xi b x = ra0ng devia0on of user x = (avg. ra'ng of user x) μ b i = ra0ng devia0on of movie i 7

DS504/CS586: Big Data Analytics Recommender System

DS504/CS586: Big Data Analytics Recommender System Welcome to DS0/CS86: Big Data Analytics Recommender System Prof. Yanhua Li Time: 6:00pm 8:0pm Thu. Location: KH6 Fall 07 Example: Recommender Systems v Customer X Star War I Star War II v Customer Y Does

More information

Updates. v Quiz 1 has been graded (by our TA) Grades are available on Canvas

Updates. v Quiz 1 has been graded (by our TA) Grades are available on Canvas Updates v Quiz has been graded (by our TA) Grades are available on Canvas v Project timeline Post your project final reports in the discussion forum (by / Tue :9pm). Submit your self-and-peer evaluation

More information

Recommender Systems TIETS43 Collaborative Filtering

Recommender Systems TIETS43 Collaborative Filtering + Recommender Systems TIETS43 Collaborative Filtering Fall 2017 Kostas Stefanidis kostas.stefanidis@uta.fi https://coursepages.uta.fi/tiets43/ selection Amazon generates 35% of their sales through recommendations

More information

Your Neighbors Affect Your Ratings: On Geographical Neighborhood Influence to Rating Prediction

Your Neighbors Affect Your Ratings: On Geographical Neighborhood Influence to Rating Prediction Your Neighbors Affect Your Ratings: On Geographical Neighborhood Influence to Rating Prediction Longke Hu Aixin Sun Yong Liu Nanyang Technological University Singapore Outline 1 Introduction 2 Data analysis

More information

Recommendation Systems UE 141 Spring 2013

Recommendation Systems UE 141 Spring 2013 Recommendation Systems UE 141 Spring 2013 Jing Gao SUNY Buffalo 1 Data Recommendation Systems users 1 3 4 3 5 5 4 5 5 3 3 2 2 2 1 items Goal Learn what a user might be interested in and recommend other

More information

Location and User Activity Preference Based Recommendation System

Location and User Activity Preference Based Recommendation System . Location and User Activity Preference Based Recommendation System Prabhakaran.K 1,Yuvaraj.T 2, Mr.A.Naresh kumar 3 student, Dept.of Computer Science,Agni college of technology, India 1,2. Asst.Professor,

More information

Recommender systems and the Netflix prize. Charles Elkan. January 14, 2011

Recommender systems and the Netflix prize. Charles Elkan. January 14, 2011 Recommender systems and the Netflix prize Charles Elkan January 14, 2011 Solving the World's Problems Creatively Recommender systems We Know What You Ought To Be Watching This Summer We re quite curious,

More information

TICRec: A Probabilistic Framework to Utilize Temporal Influence Correlations for Time-aware Location Recommendations

TICRec: A Probabilistic Framework to Utilize Temporal Influence Correlations for Time-aware Location Recommendations : A Probabilistic Framework to Utilize Temporal Influence Correlations for Time-aware Location Recommendations Jia-Dong Zhang, Chi-Yin Chow, Member, IEEE Abstract In location-based social networks (LBSNs),

More information

AN EFFICIENT METHOD FOR FRIEND RECOMMENDATION ON SOCIAL NETWORKS

AN EFFICIENT METHOD FOR FRIEND RECOMMENDATION ON SOCIAL NETWORKS AN EFFICIENT METHOD FOR FRIEND RECOMMENDATION ON SOCIAL NETWORKS Pooja N. Dharmale 1, P. L. Ramteke 2 1 CSIT, HVPM s College of Engineering & Technology, SGB Amravati University, Maharastra, INDIA dharmalepooja@gmail.com

More information

I. INTRODUCTION II. LITERATURE SURVEY. International Journal of Advanced Networking & Applications (IJANA) ISSN:

I. INTRODUCTION II. LITERATURE SURVEY. International Journal of Advanced Networking & Applications (IJANA) ISSN: A Friend Recommendation System based on Similarity Metric and Social Graphs Rashmi. J, Dr. Asha. T Department of Computer Science Bangalore Institute of Technology, Bangalore, Karnataka, India rash003.j@gmail.com,

More information

Time-aware Collaborative Topic Regression: Towards Higher Relevance in Textual Items Recommendation

Time-aware Collaborative Topic Regression: Towards Higher Relevance in Textual Items Recommendation July, 12 th 2018 Time-aware Collaborative Topic Regression: Towards Higher Relevance in Textual Items Recommendation BIRNDL 2018, Ann Arbor Anas Alzogbi University of Freiburg Databases & Information Systems

More information

Convolutional Networks Overview

Convolutional Networks Overview Convolutional Networks Overview Sargur Srihari 1 Topics Limitations of Conventional Neural Networks The convolution operation Convolutional Networks Pooling Convolutional Network Architecture Advantages

More information

Social Network Analysis and Its Developments

Social Network Analysis and Its Developments 2013 International Conference on Advances in Social Science, Humanities, and Management (ASSHM 2013) Social Network Analysis and Its Developments DENG Xiaoxiao 1 MAO Guojun 2 1 Macau University of Science

More information

Final report - Advanced Machine Learning project Million Song Dataset Challenge

Final report - Advanced Machine Learning project Million Song Dataset Challenge Final report - Advanced Machine Learning project Million Song Dataset Challenge Xiaoxiao CHEN Yuxiang WANG Honglin LI XIAOXIAO.CHEN@TELECOM-PARISTECH.FR YUXIANG.WANG@U-PSUD.FR HONG-LIN.LI@U-PSUD.FR Abstract

More information

Privacy-Preserving Collaborative Recommendation Systems Based on the Scalar Product

Privacy-Preserving Collaborative Recommendation Systems Based on the Scalar Product Privacy-Preserving Collaborative Recommendation Systems Based on the Scalar Product Justin Zhan I-Cheng Wang Abstract In the e-commerce era, recommendation systems were introduced to share customer experience

More information

Million Song Dataset Challenge!

Million Song Dataset Challenge! 1 Introduction Million Song Dataset Challenge Fengxuan Niu, Ming Yin, Cathy Tianjiao Zhang Million Song Dataset (MSD) is a freely available collection of data for one million of contemporary songs (http://labrosa.ee.columbia.edu/millionsong/).

More information

Advanced Analytics for Intelligent Society

Advanced Analytics for Intelligent Society Advanced Analytics for Intelligent Society Nobuhiro Yugami Nobuyuki Igata Hirokazu Anai Hiroya Inakoshi Fujitsu Laboratories is analyzing and utilizing various types of data on the behavior and actions

More information

Blogs (short for web logs ) have grown into one of the Internet s most. important types of websites. There are now more than 150 million of them,

Blogs (short for web logs ) have grown into one of the Internet s most. important types of websites. There are now more than 150 million of them, !! Blogs (short for web logs ) have grown into one of the Internet s most important types of websites. There are now more than 150 million of them, published by office workers, singers, businesses, and

More information

Patent Mining: Use of Data/Text Mining for Supporting Patent Retrieval and Analysis

Patent Mining: Use of Data/Text Mining for Supporting Patent Retrieval and Analysis Patent Mining: Use of Data/Text Mining for Supporting Patent Retrieval and Analysis by Chih-Ping Wei ( 魏志平 ), PhD Institute of Service Science and Institute of Technology Management National Tsing Hua

More information

LOCATION PRIVACY & TRAJECTORY PRIVACY. Elham Naghizade COMP20008 Elements of Data Processing 20 rd May 2016

LOCATION PRIVACY & TRAJECTORY PRIVACY. Elham Naghizade COMP20008 Elements of Data Processing 20 rd May 2016 LOCATION PRIVACY & TRAJECTORY PRIVACY Elham Naghizade COMP20008 Elements of Data Processing 20 rd May 2016 Part I TRAJECTORY DATA: BENEFITS & CONCERNS Ubiquity of Trajectory Data Location data being collected

More information

Dynamic Data-Driven Adaptive Sampling and Monitoring of Big Spatial-Temporal Data Streams for Real-Time Solar Flare Detection

Dynamic Data-Driven Adaptive Sampling and Monitoring of Big Spatial-Temporal Data Streams for Real-Time Solar Flare Detection Dynamic Data-Driven Adaptive Sampling and Monitoring of Big Spatial-Temporal Data Streams for Real-Time Solar Flare Detection Dr. Kaibo Liu Department of Industrial and Systems Engineering University of

More information

IMPACT OF LISTENING BEHAVIOR ON MUSIC RECOMMENDATION

IMPACT OF LISTENING BEHAVIOR ON MUSIC RECOMMENDATION IMPACT OF LISTENING BEHAVIOR ON MUSIC RECOMMENDATION Katayoun Farrahi Goldsmiths, University of London London, UK Markus Schedl, Andreu Vall, David Hauger, Marko Tkalčič Johannes Kepler University Linz,

More information

A Cross-Database Comparison to Discover Potential Product Opportunities Using Text Mining and Cosine Similarity

A Cross-Database Comparison to Discover Potential Product Opportunities Using Text Mining and Cosine Similarity Journal of Scientific & Industrial Research Vol. 76, January 2017, pp. 11-16 A Cross-Database Comparison to Discover Potential Product Opportunities Using Text Mining and Cosine Similarity Yung-Chi Shen

More information

Context Aware Computing

Context Aware Computing Context Aware Computing Context aware computing: the use of sensors and other sources of information about a user s context to provide more relevant information and services Context independent: acts exactly

More information

Document Content-Based Search Using Topic Modeling

Document Content-Based Search Using Topic Modeling Document Content-Based Search Using Topic Modeling Jason Bello, Brian de Silva, Jerry Luo University of California, Los Angeles August 9, 2013 Jason Bello, Brian de Silva, Jerry Luo (UCLA) Topic Modeling

More information

Tag Propaga)on based on Ar)st Similarity

Tag Propaga)on based on Ar)st Similarity Tag Propaga)on based on Ar)st Similarity Joon Hee Kim Brian Tomasik Douglas Turnbull Swarthmore College ISMIR 2009 Ar)st Annota)on with Tags Ani Difranco Acoustic Instrumentation Folk Rock Feminist Lyrics

More information

Recommendations Worth a Million

Recommendations Worth a Million Recommendations Worth a Million An Introduction to Clustering 15.071x The Analytics Edge Clapper image is in the public domain. Source: Pixabay. Netflix Online DVD rental and streaming video service More

More information

Adaptive Recommender System Based On Users Interaction, Culture and Emotional Intelligence

Adaptive Recommender System Based On Users Interaction, Culture and Emotional Intelligence Adaptive Recommender System Based On Users Interaction, Culture and Emotional Intelligence Universiti Kebangsaan Malaysia Faculty of Engineering and Built Environment Assoc. Prof. Dr. Hafizah Husain Kaveh

More information

SELECTING RELEVANT DATA

SELECTING RELEVANT DATA EXPLORATORY ANALYSIS The data that will be used comes from the reviews_beauty.json.gz file which contains information about beauty products that were bought and reviewed on Amazon.com. Each data point

More information

There are many networked resources which now provide

There are many networked resources which now provide Categorizing Written Texts by Author Gender : Literary and Linguistic Computing 17(4). Argamon S., Koppel M., Fine J., Shimoni A. (2003). Gender, Genre and Writing Style in Formal Written Texts : Text

More information

MEASURING PRIVACY RISK IN ONLINE SOCIAL NETWORKS. Justin Becker, Hao Chen UC Davis May 2009

MEASURING PRIVACY RISK IN ONLINE SOCIAL NETWORKS. Justin Becker, Hao Chen UC Davis May 2009 MEASURING PRIVACY RISK IN ONLINE SOCIAL NETWORKS Justin Becker, Hao Chen UC Davis May 2009 1 Motivating example College admission Kaplan surveyed 320 admissions offices in 2008 1 in 10 admissions officers

More information

igslr: Personalized Geo-Social Location Recommendation - A Kernel Density Estimation Approach

igslr: Personalized Geo-Social Location Recommendation - A Kernel Density Estimation Approach igr: Personalized Geo-ocial ocation Recommendation - A Kernel Density Estimation Approach Jia-Dong Zhang Chi-Yin Chow Department of Computer cience, City niversity of Hong Kong, Hong Kong jzhang26@student.cityu.edu.hk

More information

Learning Recency and Inferring Associations in Location Based Social Network for Emotion induced Point-of-Interest Recommendation

Learning Recency and Inferring Associations in Location Based Social Network for Emotion induced Point-of-Interest Recommendation JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 32, XXXX-XXXX (2016) Learning Recency and Inferring Associations in Location Based Social Network for Emotion induced Point-of-Interest Recommendation LOGESH

More information

Knowledge Directs Differences

Knowledge Directs Differences Landscape Report 2015 2015 DIREC The Most Significant Information of Digital Games Consumption in Iran Knowledge Directs Differences Digital games Research Center 25 Child under 12 years 77 Smartphone 23

More information

Scaling Mobile Alternate Reality Games with Geo-Location Translation

Scaling Mobile Alternate Reality Games with Geo-Location Translation Scaling Mobile Alternate Reality Games with Geo-Location Translation Sanjeet Hajarnis, Brandon Headrick, Aziel Ferguson, and Mark O. Riedl School of Interactive Computing, Georgia Institute of Technology

More information

AI powering Corporate Communications

AI powering Corporate Communications AI powering Corporate Communications Media Analysis & Insights December 2018 HUMANS MEET AI Artificial intelligence (AI) is the ability of computers to understand certain aspects of the natural world,

More information

Exploring the New Trends of Chinese Tourists in Switzerland

Exploring the New Trends of Chinese Tourists in Switzerland Exploring the New Trends of Chinese Tourists in Switzerland Zhan Liu, HES-SO Valais-Wallis Anne Le Calvé, HES-SO Valais-Wallis Nicole Glassey Balet, HES-SO Valais-Wallis Address of corresponding author:

More information

Drum Transcription Based on Independent Subspace Analysis

Drum Transcription Based on Independent Subspace Analysis Report for EE 391 Special Studies and Reports for Electrical Engineering Drum Transcription Based on Independent Subspace Analysis Yinyi Guo Center for Computer Research in Music and Acoustics, Stanford,

More information

[Extract a Segment From Laura s Interview]

[Extract a Segment From Laura s Interview] 1 #019: Successful Before Breakfast: An Interview with Laura Vanderkam November 4, 2013 Introduction The 5 am Miracle - Episode #19 [Extract a Segment From Laura s Interview] [Intro Song] Good morning

More information

An Embedding Model for Mining Human Trajectory Data with Image Sharing

An Embedding Model for Mining Human Trajectory Data with Image Sharing An Embedding Model for Mining Human Trajectory Data with Image Sharing C.GANGAMAHESWARI 1, A.SURESHBABU 2 1 M. Tech Scholar, CSE Department, JNTUACEA, Ananthapuramu, A.P, India. 2 Associate Professor,

More information

Data: Integration and Science

Data: Integration and Science Data: Integration and Science Will Koning Ana-Maria Mocanu Auckland, 14 th September 2017 Data: Integration and Science Objectives of this presentation We will present examples of data integration and

More information

Paper Presentation. Steve Jan. March 5, Virginia Tech. Steve Jan (Virginia Tech) Paper Presentation March 5, / 28

Paper Presentation. Steve Jan. March 5, Virginia Tech. Steve Jan (Virginia Tech) Paper Presentation March 5, / 28 Paper Presentation Steve Jan Virginia Tech March 5, 2015 Steve Jan (Virginia Tech) Paper Presentation March 5, 2015 1 / 28 2 paper to present Nonparametric Multi-group Membership Model for Dynamic Networks,

More information

Scalable Routing Protocols for Mobile Ad Hoc Networks

Scalable Routing Protocols for Mobile Ad Hoc Networks Helsinki University of Technology T-79.300 Postgraduate Course in Theoretical Computer Science Scalable Routing Protocols for Mobile Ad Hoc Networks Hafeth Hourani hafeth.hourani@nokia.com Contents Overview

More information

Bridging the Gap between the User s Digital and Physical Worlds with Compelling Real Life Social Applications

Bridging the Gap between the User s Digital and Physical Worlds with Compelling Real Life Social Applications Bridging the Gap between the User s Digital and Physical Worlds with Compelling Real Life Social Applications Johann Stan, Myriam Ribiere, Ryan Skraba, Jérôme Picault, Mathieu Beauvais, Patrick Legrand,

More information

The Wikipedia Location Network: Overcoming Borders and Oceans

The Wikipedia Location Network: Overcoming Borders and Oceans The Wikipedia Location Network: Overcoming Borders and Oceans Johanna Geiß 1, Andreas Spitz 1, Jannik Strötgen 1,2, and Michael Gertz 1 1 Heidelberg University, Institute of Computer Science Database Systems

More information

Chapter 12: Sampling

Chapter 12: Sampling Chapter 12: Sampling In all of the discussions so far, the data were given. Little mention was made of how the data were collected. This and the next chapter discuss data collection techniques. These methods

More information

Learning a Value Analysis Tool For Agent Evaluation

Learning a Value Analysis Tool For Agent Evaluation Learning a Value Analysis Tool For Agent Evaluation Martha White Michael Bowling Department of Computer Science University of Alberta International Joint Conference on Artificial Intelligence, 2009 Motivation:

More information

Image Extraction using Image Mining Technique

Image Extraction using Image Mining Technique IOSR Journal of Engineering (IOSRJEN) e-issn: 2250-3021, p-issn: 2278-8719 Vol. 3, Issue 9 (September. 2013), V2 PP 36-42 Image Extraction using Image Mining Technique Prof. Samir Kumar Bandyopadhyay,

More information

Graph-of-word and TW-IDF: New Approach to Ad Hoc IR (CIKM 2013) Learning to Rank: From Pairwise Approach to Listwise Approach (ICML 2007)

Graph-of-word and TW-IDF: New Approach to Ad Hoc IR (CIKM 2013) Learning to Rank: From Pairwise Approach to Listwise Approach (ICML 2007) Graph-of-word and TW-IDF: New Approach to Ad Hoc IR (CIKM 2013) Learning to Rank: From Pairwise Approach to Listwise Approach (ICML 2007) Qin Huazheng 2014/10/15 Graph-of-word and TW-IDF: New Approach

More information

A Comparison of Playlist Generation Strategies for Music Recommendation and a New Baseline Scheme

A Comparison of Playlist Generation Strategies for Music Recommendation and a New Baseline Scheme Intelligent Techniques for Web Personalization and Recommendation: Papers from the AAAI 13 Workshop A Comparison of Playlist Generation Strategies for Music Recommendation and a New Baseline Scheme Geoffray

More information

Vistradas: Visual Analytics for Urban Trajectory Data

Vistradas: Visual Analytics for Urban Trajectory Data Vistradas: Visual Analytics for Urban Trajectory Data Luciano Barbosa 1, Matthías Kormáksson 1, Marcos R. Vieira 1, Rafael L. Tavares 1,2, Bianca Zadrozny 1 1 IBM Research Brazil 2 Univ. Federal do Rio

More information

Where We re Going. Heavyweight Applications of Lightweight User Models. Some Stories. Usenet Interface. Some Stories. Cross-Sales at GUS

Where We re Going. Heavyweight Applications of Lightweight User Models. Some Stories. Usenet Interface. Some Stories. Cross-Sales at GUS Heavyweight Applications of Lightweight User Models Collaborative Filtering Recommender Systems Joseph A. Konstan GroupLens Research Project University of Minnesota konstan@cs.umn.edu http://www.grouplens.org

More information

Sentiment Analysis of User-Generated Contents for Pharmaceutical Product Safety

Sentiment Analysis of User-Generated Contents for Pharmaceutical Product Safety Sentiment Analysis of User-Generated Contents for Pharmaceutical Product Safety Haruna Isah, Daniel Neagu and Paul Trundle Artificial Intelligence Research Group University of Bradford, UK Haruna Isah

More information

Spring 06 Assignment 2: Constraint Satisfaction Problems

Spring 06 Assignment 2: Constraint Satisfaction Problems 15-381 Spring 06 Assignment 2: Constraint Satisfaction Problems Questions to Vaibhav Mehta(vaibhav@cs.cmu.edu) Out: 2/07/06 Due: 2/21/06 Name: Andrew ID: Please turn in your answers on this assignment

More information

Compressed Sensing for Multiple Access

Compressed Sensing for Multiple Access Compressed Sensing for Multiple Access Xiaodai Dong Wireless Signal Processing & Networking Workshop: Emerging Wireless Technologies, Tohoku University, Sendai, Japan Oct. 28, 2013 Outline Background Existing

More information

Hybrid Transceivers for Massive MIMO - Some Recent Results

Hybrid Transceivers for Massive MIMO - Some Recent Results IEEE Globecom, Dec. 2015 for Massive MIMO - Some Recent Results Andreas F. Molisch Wireless Devices and Systems (WiDeS) Group Communication Sciences Institute University of Southern California (USC) 1

More information

Design of Parallel Algorithms. Communication Algorithms

Design of Parallel Algorithms. Communication Algorithms + Design of Parallel Algorithms Communication Algorithms + Topic Overview n One-to-All Broadcast and All-to-One Reduction n All-to-All Broadcast and Reduction n All-Reduce and Prefix-Sum Operations n Scatter

More information

This one-semester elective course is intended as a practical, hands-on guide to help you understand the process of game development.

This one-semester elective course is intended as a practical, hands-on guide to help you understand the process of game development. Syllabus Development Course Overview This one-semester elective course is intended as a practical, hands-on guide to help you understand the process of game development. This course is structured into

More information

Latest trends in sentiment analysis - A survey

Latest trends in sentiment analysis - A survey Latest trends in sentiment analysis - A survey Anju Rose G Punneliparambil PG Scholar Department of Computer Science & Engineering Govt. Engineering College, Thrissur, India anjurose.ar@gmail.com Abstract

More information

Transmit Antenna Selection in Linear Receivers: a Geometrical Approach

Transmit Antenna Selection in Linear Receivers: a Geometrical Approach Transmit Antenna Selection in Linear Receivers: a Geometrical Approach I. Berenguer, X. Wang and I.J. Wassell Abstract: We consider transmit antenna subset selection in spatial multiplexing systems. In

More information

THE TOP 100 CITIES PRIMED FOR SMART CITY INNOVATION

THE TOP 100 CITIES PRIMED FOR SMART CITY INNOVATION THE TOP 100 CITIES PRIMED FOR SMART CITY INNOVATION Identifying U.S. Urban Mobility Leaders for Innovation Opportunities 6 March 2017 Prepared by The Top 100 Cities Primed for Smart City Innovation 1.

More information

The power behind an intelligent system is knowledge.

The power behind an intelligent system is knowledge. Induction systems 1 The power behind an intelligent system is knowledge. We can trace the system success or failure to the quality of its knowledge. Difficult task: 1. Extracting the knowledge. 2. Encoding

More information

Keywords: DSM, Social Network Analysis, Product Architecture, Organizational Design.

Keywords: DSM, Social Network Analysis, Product Architecture, Organizational Design. 9 TH INTERNATIONAL DESIGN STRUCTURE MATRIX CONFERENCE, DSM 07 16 18 OCTOBER 2007, MUNICH, GERMANY SOCIAL NETWORK TECHNIQUES APPLIED TO DESIGN STRUCTURE MATRIX ANALYSIS. THE CASE OF A NEW ENGINE DEVELOPMENT

More information

FORESIGHT AND UNDERSTANDING FROM SCIENTIFIC EXPOSITION (FUSE) Incisive Analysis Office. Dewey Murdick Program Manager

FORESIGHT AND UNDERSTANDING FROM SCIENTIFIC EXPOSITION (FUSE) Incisive Analysis Office. Dewey Murdick Program Manager FORESIGHT AND UNDERSTANDING FROM SCIENTIFIC EXPOSITION (FUSE) Incisive Analysis Office Dewey Murdick Program Manager Dewey.Murdick@ugov.gov 2011 Graph Exploitation Symposium August 9-10 2011 Situation

More information

Science of Science & Innovation Policy and Understanding Science. Julia Lane

Science of Science & Innovation Policy and Understanding Science. Julia Lane Science of Science & Innovation Policy and Understanding Science Julia Lane Graphic Source: 2005 Presentation by Neal Lane on the Future of U.S. Science and Technology Tag Cloud Source: Generated from

More information

Sampling distributions and the Central Limit Theorem

Sampling distributions and the Central Limit Theorem Sampling distributions and the Central Limit Theorem Johan A. Elkink University College Dublin 14 October 2013 Johan A. Elkink (UCD) Central Limit Theorem 14 October 2013 1 / 29 Outline 1 Sampling 2 Statistical

More information

200 Blog Post Ideas. When you get a little stuck trying to think of Blog Post Ideas here s 200 that just might get you going.

200 Blog Post Ideas. When you get a little stuck trying to think of Blog Post Ideas here s 200 that just might get you going. 200 Blog Post Ideas When you get a little stuck trying to think of Blog Post Ideas here s 200 that just might get you going. Blog Posts That Are Useful List Posts List things that you learned from a book

More information

Fourier Analysis and Change Detection. Dynamic Network Analysis

Fourier Analysis and Change Detection. Dynamic Network Analysis Fourier Analysis and Change Detection Prof. L. Richard Carley carley@ece.cmu.edu 1 Dynamic Network Analysis Key focus Networks change over time Summary statistics typically average all data Useless for

More information

Segmentation using Saturation Thresholding and its Application in Content-Based Retrieval of Images

Segmentation using Saturation Thresholding and its Application in Content-Based Retrieval of Images Segmentation using Saturation Thresholding and its Application in Content-Based Retrieval of Images A. Vadivel 1, M. Mohan 1, Shamik Sural 2 and A.K.Majumdar 1 1 Department of Computer Science and Engineering,

More information

Tips, Dones and ToDos: Uncovering User Profiles in FourSquare

Tips, Dones and ToDos: Uncovering User Profiles in FourSquare Tips, Dones and ToDos: Uncovering User Profiles in FourSquare Marisa Vasconcelos Universidade Federal de Minas Gerais Belo Horizonte, Brazil marisav@dcc.ufmg.br Fabrício Benevenuto Universidade Federal

More information

Global Journal of Engineering Science and Research Management

Global Journal of Engineering Science and Research Management A KERNEL BASED APPROACH: USING MOVIE SCRIPT FOR ASSESSING BOX OFFICE PERFORMANCE Mr.K.R. Dabhade *1 Ms. S.S. Ponde 2 *1 Computer Science Department. D.I.E.M.S. 2 Asst. Prof. Computer Science Department,

More information

Sparse Statistical Analysis of Online News

Sparse Statistical Analysis of Online News Sparse Statistical Analysis of Online News Laurent El Ghaoui (EECS/IEOR, UC Berkeley) with help from Onureena Banerjee & Brian Gawalt (EECS, UCB) BCNM Intro Talk August 27, 2008 Multivariate statistics

More information

Cross-Community Sensing and Mining (CSM)

Cross-Community Sensing and Mining (CSM) Accepted by IEEE Communications Magazine Cross-Community Sensing and Mining (CSM) Bin Guo 1, Zhiwen Yu 1, Daqing Zhang 1,2, Xingshe Zhou 1 1 School of Computer Science, Northwestern Polytechnical University,

More information

Analyzing Games.

Analyzing Games. Analyzing Games staffan.bjork@chalmers.se Structure of today s lecture Motives for analyzing games With a structural focus General components of games Example from course book Example from Rules of Play

More information

Predicting the Usefulness of Amazon Reviews Using Off-The-Shelf Argumentation Mining

Predicting the Usefulness of Amazon Reviews Using Off-The-Shelf Argumentation Mining Predicting the Usefulness of Amazon Reviews Using Off-The-Shelf Argumentation Mining Marco Passon*, Marco Lippi, Giuseppe Serra*, Carlo Tasso* * University of Udine University of Modena and Reggio Emilia

More information

Introduction. Introduction ROBUST SENSOR POSITIONING IN WIRELESS AD HOC SENSOR NETWORKS. Smart Wireless Sensor Systems 1

Introduction. Introduction ROBUST SENSOR POSITIONING IN WIRELESS AD HOC SENSOR NETWORKS. Smart Wireless Sensor Systems 1 ROBUST SENSOR POSITIONING IN WIRELESS AD HOC SENSOR NETWORKS Xiang Ji and Hongyuan Zha Material taken from Sensor Network Operations by Shashi Phoa, Thomas La Porta and Christopher Griffin, John Wiley,

More information

ArcGIS Pro: What s New in Analysis

ArcGIS Pro: What s New in Analysis Federal GIS Conference February 9 10, 2015 Washington, DC ArcGIS Pro: What s New in Analysis James Sullivan What is analysis? Analysis transforms raw data into information or knowledge. Spatial analysis

More information

Study on Relationship between Scientific and Technological Resource Sharing and Regional Economic Development. Ya Nie

Study on Relationship between Scientific and Technological Resource Sharing and Regional Economic Development. Ya Nie International Conference on Education, Sports, Arts and Management Engineering (ICESAME 2016) Study on Relationship between Scientific and Technological Resource Sharing and Regional Economic Development

More information

Shuhua Liu Senior Research Fellow, Docent Arcada Universitty of Applied Sciences. KaTuMetro Kickoff Seminar, University of Helsinki

Shuhua Liu Senior Research Fellow, Docent Arcada Universitty of Applied Sciences. KaTuMetro Kickoff Seminar, University of Helsinki Intelligent Methods and Models for Mining Community Knowledge: Enabling enriched Understanding of Urban Development in Helsinki Metropolitan Region with Social Intelligence Shuhua Liu Senior Research Fellow,

More information

V I T A L S T E P S. Developing your story

V I T A L S T E P S. Developing your story 5 V I T A L S T E P S TO Developing your story You can t activate your brand without a compelling and authentic story. But, first: What is that story? At this point, read our first two guides: Bring Your

More information

Learning with Confidence: Theory and Practice of Information Geometric Learning from High-dim Sensory Data

Learning with Confidence: Theory and Practice of Information Geometric Learning from High-dim Sensory Data Learning with Confidence: Theory and Practice of Information Geometric Learning from High-dim Sensory Data Professor Lin Zhang Department of Electronic Engineering, Tsinghua University Co-director, Tsinghua-Berkeley

More information

Mining Chinese social media UGC: a big data framework for analyzing Douban movie reviews

Mining Chinese social media UGC: a big data framework for analyzing Douban movie reviews University of Wollongong Research Online Faculty of Law, Humanities and the Arts - Papers Faculty of Law, Humanities and the Arts 2016 Mining Chinese social media UGC: a big data framework for analyzing

More information

IBM Research Report. Audits and Business Controls Related to Receipt Rules: Benford's Law and Beyond

IBM Research Report. Audits and Business Controls Related to Receipt Rules: Benford's Law and Beyond RC24491 (W0801-103) January 25, 2008 Other IBM Research Report Audits and Business Controls Related to Receipt Rules: Benford's Law and Beyond Vijay Iyengar IBM Research Division Thomas J. Watson Research

More information

Computer Graphics. Si Lu. Fall er_graphics.htm 10/02/2015

Computer Graphics. Si Lu. Fall er_graphics.htm 10/02/2015 Computer Graphics Si Lu Fall 2017 http://www.cs.pdx.edu/~lusi/cs447/cs447_547_comput er_graphics.htm 10/02/2015 1 Announcements Free Textbook: Linear Algebra By Jim Hefferon http://joshua.smcvt.edu/linalg.html/

More information

Analysis of Temporal Logarithmic Perspective Phenomenon Based on Changing Density of Information

Analysis of Temporal Logarithmic Perspective Phenomenon Based on Changing Density of Information Analysis of Temporal Logarithmic Perspective Phenomenon Based on Changing Density of Information Yonghe Lu School of Information Management Sun Yat-sen University Guangzhou, China luyonghe@mail.sysu.edu.cn

More information

DOWNLOAD OR READ : THE ULTIMATE PLAYER 39 S GUIDE TO MINECRAFT PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : THE ULTIMATE PLAYER 39 S GUIDE TO MINECRAFT PDF EBOOK EPUB MOBI DOWNLOAD OR READ : THE ULTIMATE PLAYER 39 S GUIDE TO MINECRAFT PDF EBOOK EPUB MOBI Page 1 Page 2 the ultimate player 39 s guide to minecraft the ultimate player 39 pdf the ultimate player 39 s guide to

More information

A Knowledge Discovery Framework for XML-Literature-Data

A Knowledge Discovery Framework for XML-Literature-Data National Science Library Chinese Academy of Sciences A Knowledge Discovery Framework for XML-Literature-Data Lixue Zou*, Li Wang, Xiaoli Chen, Xiwen Liu zoulx@mail.las.ac.cn National Science Library, Chinese

More information

Daily and Weekly Patterns in Human Mobility

Daily and Weekly Patterns in Human Mobility Daily and Weekly Patterns in Human Mobility Eelco Herder and Patrick Siehndel L3S Research Center, Leibniz University Hannover, Germany {herder,siehndel}@l3s.de Abstract. Most location-based services provide

More information

Using Web Frequency Within Multimedia Exhibitions

Using Web Frequency Within Multimedia Exhibitions Using Web Frequency Within Multimedia Exhibitions David A. Shamma ayman@cs.northwestern.edu Shannon Bradshaw Department of Management Sciences The University of Iowa Iowa City, Iowa 52242 USA shannon-bradshaw@uiowa.edu

More information

Romantic Partnerships and the Dispersion of Social Ties

Romantic Partnerships and the Dispersion of Social Ties Introduction Embeddedness and Evaluation Combining Features Romantic Partnerships and the of Social Ties Lars Backstrom Jon Kleinberg presented by Yehonatan Cohen 2014-11-12 Introduction Embeddedness and

More information

Applying Modern Reinforcement Learning to Play Video Games. Computer Science & Engineering Leung Man Ho Supervisor: Prof. LYU Rung Tsong Michael

Applying Modern Reinforcement Learning to Play Video Games. Computer Science & Engineering Leung Man Ho Supervisor: Prof. LYU Rung Tsong Michael Applying Modern Reinforcement Learning to Play Video Games Computer Science & Engineering Leung Man Ho Supervisor: Prof. LYU Rung Tsong Michael Outline Term 1 Review Term 2 Objectives Experiments & Results

More information

User Modeling on Demographic Attributes in Big Mobile Social Networks

User Modeling on Demographic Attributes in Big Mobile Social Networks User Modeling on Demographic Attributes in Big Mobile Social Networks YUXIAO DONG, University of Notre Dame NITESH V. CHAWLA, University of Notre Dame JIE TANG, Tsinghua University YANG YANG, Zhejiang

More information

A Review of Related Work on Machine Learning in Semiconductor Manufacturing and Assembly Lines

A Review of Related Work on Machine Learning in Semiconductor Manufacturing and Assembly Lines A Review of Related Work on Machine Learning in Semiconductor Manufacturing and Assembly Lines DI Darko Stanisavljevic VIRTUAL VEHICLE DI Michael Spitzer VIRTUAL VEHICLE i-know 16 18.-19.10.2016, Graz

More information

M2M massive wireless access: challenges, research issues, and ways forward

M2M massive wireless access: challenges, research issues, and ways forward M2M massive wireless access: challenges, research issues, and ways forward Petar Popovski Aalborg University Andrea Zanella, Michele Zorzi André D. F. Santos Uni Padova Alcatel Lucent Nuno Pratas, Cedomir

More information

Signal Processing First Lab 20: Extracting Frequencies of Musical Tones

Signal Processing First Lab 20: Extracting Frequencies of Musical Tones Signal Processing First Lab 20: Extracting Frequencies of Musical Tones Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment and go over all exercises in

More information

Understanding Community Effects on Information Diffusion!

Understanding Community Effects on Information Diffusion! Understanding Community Effects on Information Diffusion! Shuyang Lin Qingbo Hu Guan Wang Philip S. Yu University of Illinois at Chicago Presented by Hong- Han Shuai NaConal Taiwan University 2 Picture

More information

Techniques for Sentiment Analysis survey

Techniques for Sentiment Analysis survey I J C T A, 9(41), 2016, pp. 355-360 International Science Press ISSN: 0974-5572 Techniques for Sentiment Analysis survey Anu Sharma* and Savleen Kaur** ABSTRACT A Sentiment analysis is a technique to analyze

More information

Video Marketing Vol. 3

Video Marketing Vol. 3 Video Marketing Vol. 3 TITLE: Increase Your Bottom Line With Video Marketing Author: Iris Carter-Collins Table Of Contents Increase Your Bottom Line With Video Marketing 1 Learn The Basics Of Great Video

More information

SlideShare Traffic Rush

SlideShare Traffic Rush If you re wondering how you can possibly use a slide-hosting website like SlideShare (https://www.slideshare.net) to your advantage, then you re reading the correct article. SlideShare may seem like an

More information

Comparative Study of various Surveys on Sentiment Analysis

Comparative Study of various Surveys on Sentiment Analysis Comparative Study of various Surveys on Milanjit Kaur 1, Deepak Kumar 2. 1 Student (M.Tech Scholar), Computer Science and Engineering, Lovely Professional University, Punjab, India. 2 Assistant Professor,

More information