Projektseminar: Sentimentanalyse Dozenten: Michael Wiegand und Marc Schulder

Size: px
Start display at page:

Download "Projektseminar: Sentimentanalyse Dozenten: Michael Wiegand und Marc Schulder"

Transcription

1 Projektseminar: Sentimentanalyse Dozenten: Michael Wiegand und Marc Schulder Präsentation des Papers ICWSM A Great Catchy Name: Semi-Supervised Recognition of Sarcastic Sentences in Online Product Reviews von Oren Tsur, Dmitry Davidov, Ari Rappoport Maximilian Wolf Sentimentanalyse

2 Table of contents 1. Introduction 2. Methods 3. Two Evaluation Experiments 4. Results 5. Conclusion 2

3 What is sarcasm? Definition: the activity of saying or writing the opposite of what you mean, or of speaking in a way intended to make someone else feel stupid or show them that you are angry (Macmillan English Dictionary 2007) 3

4 Examples 1. Love The Cover (book) 2. Where am I? (GPS device) 3. Trees died for this book? (book) 4

5 Examples 4. Be sure to save your purchase receipt (smart phone) 5. Are these ipods designed to die after two years? (musicplayer) 6. Great for insomniacs (book) 5

6 Examples 7. All the features you want. Too bad they don t work! (smart phone) 8. Great idea, now try again with a real product development team (e-reader) 9. Defective by design (music player) 6

7 Why should we care? Commercial point of view: personalization of recommendation systems Improvement of review summarization and opinion mining systems 7

8 SASI Semi-supervised Algorithm for Sarcasm Identification 8

9 SASI Two modules: 1. semi supervised pattern acquisition identifies sarcastic patterns provides features for a classifier 2. a classification algorithm that classifies each sentence to a sarcastic class 9

10 Classification Framework Training Phase Manually labeled sentences (seeds) Score: not sarcastic definitely sarcastic Labeled sentences pattern-based features 10

11 Pattern extraction Definition: A pattern is a ordered sequence of high frequency words (HFWs) and content words (CW). HFW: corpus frequency more than 1000 words per million CW: corpus frequency less than 100 words per million. 11

12 Pattern extraction Example: Sony does not care about customer opinions. Pattern: [company] does not CW about CW CW. replace company/author/product/book name with [product] [company] [title] [author] less specific patterns 12

13 Pattern extraction Patterns consist of: 2-6 HFWs 1-6 Slots for CWs Starts and ends with a HFW Minimal pattern: [HFW] [CW] [HFW] 13

14 Pattern extraction Patterns may overlap. Garmin apparently does not care much about product quality or customer support. [company] CW does not CW much does not CW much about CW CW or not CW much about CW CW or CW CW. 14

15 Pattern selection Hundreds of patterns! 15

16 Pattern selection Are they all useful? No! 16

17 Pattern selection Two criteria to select useful patterns: First: remove all patterns which only occur in sentences from a single product/book Second: remove all patterns which were labeled as 5 (clearly sarcastic) and also labeled 1 (not sarcastic) in the training set 17

18 Recap We have useful patterns, great! What now? 18

19 Pattern matching Patterns relatively long exact matches uncommon Taking advantage of partial matches reduces the sparsity 19

20 Pattern matching Feature value for each pattern: 0 a 1 and 0 g 1 are parameters to assign reduced scores for imperfect matches a = g = : Exact match (all components in correct order) a : g * n / N : 0 : No match Sparse match (additional non-matching words) Incomplete match (only n > 1 of N components appear in the sentence) 20

21 Pattern matching Garmin apparently does not care much about product quality or customer support [company] CW does not 1 (exact match) [company] CW not 0.1 (sparse match) [company] CW CW does not 0,1 * 4/5 = 0.08 (incomplete match) 1 : Exact match a : Sparse match g * n / N : Incomplete match 0 : No match 21

22 Punctuation-based features 1. sentence length in words 2. number of! characters in the sentence 3. number of? characters in the sentence 4. number of quotes in the sentence 5. number of capitalized words in the sentence Normalized to be in [0-1] range Each of these features is equal to the weight of a single pattern feature 22

23 Seed training set SASI is semi-supervised a small seed of annotated data is required 80 sentences labeled 3-5 (sarcastic to some degree) Positive examples Full text of 80 negative reviews with no sarcastic sentences Negative examples 23

24 Results 5-point cross validation Precision Recall F Score punctuation 25,6% 31,2% 28,1% patterns 74,3% 78,8% 76,5% pat+punct 86,8% 76,3% 81,2% Not a bad first result, but: Seed very small (only 80 sarcastic sentences) 24

25 Data enrichment Only a small annotated seed available Number of sarcastic sentences in the seed modest Annotation is expensive How to find more training examples without additional annotation effort? 25

26 Data enrichment Sarcastic sentences often co-appear Automated web search (using Yahoo! BOSS API) Example: this book was really good until page 2! search: this book was really good until get: Gee, I thought this book was really good until I found out the Author didn't get into Bread Loaf! Score: weighted average of the closest training set vectors 26

27 Extended training set 471 positive examples (sarcastic sentences) 5020 negative examples (non-sarcastic) 27

28 Results 5-point cross validation Precision Recall F Score punctuation 25,6% 31,2% 28,1% patterns 74,3% 78,8% 76,5% pat+punct 86,8% 76,3% 81,2% Enrich punct 40,0% 39,0% 39,5% Enrich pat 76,2% 77,7% 76,9% All: SASI 91,2% 75,6% 82,7% Slightly better score after data enrichment Punctuation = weakest feature 28

29 Evaluation Two experiments 1.) Evaluate pattern acquisition process 5 fold cross validation over seed data 2.) Evaluate SASI Test on unseen sentences, compare to human annotated gold standard 29

30 Data Amazon.com reviews #products #reviews avg. stars avg. length (chars) Different product domains: Books, music players, cameras, gps, consoles,... 30

31 Evaluation SASI classified all sentences in reviews No gold standard classification available smaller test set / evaluation set 90 sarcastic sentences (labeled 3-5) 90 non-sarcastic sentences (labeled 1-2) Two constraints 31

32 Evaluation Two constraints: 1.) all non-sarcastic sentences belong to negative reviews (1-3 stars) All sentences drawn from the same population Increasing chances for direct or indirect negative sentiment 2.) all sentences contain a named entity Keeps the evaluation set relevant More likely to contain sentiment 32

33 Evaluation 15 Annotators of varying cultural backgrounds Each Annotator labeled 40 sentences (1-5) Each sentence labeled by 3 annotators Fleiss k = 0,34 fair agreement Inter Annotator Agreement 33

34 Baseline Star-sentiment baseline Exploits the Amazon meta-data: star rating Identify unhappy reviewers (1-3 stars) Classify sentence as sarcastic, if sentences exhibit strong positive sentiment (in a negative review) List of positive sentiment words predefined (about 20) great, excellent, best, top, exciting, etc 34

35 Results Evaluation on the evaluation set Starsentiment Precision Recall F Score 50% 16% 24,2% SASI 76,6% 81,3% 78,8% SASI much better than baseline Baseline only captures a certain type of sarcasm Why does SASI work so well? 35

36 Some examples A classic sarcastic comment: Silly me, the Kindle and the Sony ebook can't read these protected formats. Great! Patterns: me, the CW and [product] can't [product] can't CW these CW CW. Great! can't CW these CW CW. these CW CW. Great! 36

37 Some examples Punctuation marks = weakest predictors... and capital letters = strong predictors Example: Precision Recall F Score punctuation 25,6% 31,2% 28,1% patterns 74,3% 78,8% 76,5% pat+punct 86,8% 76,3% 81,2% i guess Enrich I don't punct think 40% very 39,0% brilliantly... 39,5% well... it Enrich pat 76,2% 77,7% 76,9% was ok... but not good to read just for fun... cuz All: SASI 91,2% 75,6% 82,7% it's not fun... Well you know what happened. ALMOST NOTHING HAPPENED!!! 37

38 Some examples SASI fail?: this book was really good until page 2! vs. this book was really good until page 430! No context similar patterns 38

39 Some examples Context is captured indirectly: This book was great until page 2! What an achievement! Patterns can cross sentence boundries what produces more patterns SASI uses context 39

40 Speculation Motivation for using sarcasm Product reviews Avg. stars Price sarcastic Shure E2c 782 3,8 99$ 51 Da Vinci Code ,46 9,99$ 79 Sony MDR-NC ,37 69,99$ 34 The God Delusions ,91 27$ 19 Kindle ereader ,9 489$ 19 Three factors for using sarcasm: 1. Popularity of a product 2. Simplicity of a product 3. Price of a product 40

41 Conclusion SASI Found some strong features for sarcasm CAPITAL LETTERS positive sentiment in negative review A combination of subtle features works better than using just some strong features Sarcasm has various facets 41

42 Danke für die Aufmerksamkeit! 42

43 Extra Unterschied zwischen Sarkasmus und Ironie: Sarkasmus = Intention Sarkasmus ein frontaler, offener oder indirekter, verschlüsselter Angriff. Ironie = Stilmittel Ironie ist, wenn das Gegenteil von dem, was gesagt wird, gemeint ist. ( 43

44 Extra feature and feature vector a feature is an individual measurable property of a phenomenon being observed. Features are usually numeric, but structural features such as strings and graphs are used in syntactic pattern recognition. A set of numeric features can be conveniently described by a feature vector. 44

45 45

ICWSM A Great Catchy Name: Semi-Supervised Recognition of Sarcastic Sentences in Online Product Reviews

ICWSM A Great Catchy Name: Semi-Supervised Recognition of Sarcastic Sentences in Online Product Reviews ICWSM A Great Catchy Name: Semi-Supervised Recognition of Sarcastic Sentences in Online Product Reviews Oren Tsur Institute of Computer Science The Hebrew University Jerusalem, Israel oren@cs.huji.ac.il

More information

Sarcasm Detection in Text: Design Document

Sarcasm Detection in Text: Design Document CSC 59866 Senior Design Project Specification Professor Jie Wei Wednesday, November 23, 2016 Sarcasm Detection in Text: Design Document Jesse Feinman, James Kasakyan, Jeff Stolzenberg 1 Table of contents

More information

Automatic Detection of Sarcasm in BBS Posts Based on Sarcasm Classification

Automatic Detection of Sarcasm in BBS Posts Based on Sarcasm Classification Web 1,a) 2,b) 2,c) Web Web 8 ( ) Support Vector Machine (SVM) F Web Automatic Detection of Sarcasm in BBS Posts Based on Sarcasm Classification Fumiya Isono 1,a) Suguru Matsuyoshi 2,b) Fumiyo Fukumoto

More information

An Impact Analysis of Features in a Classification Approach to Irony Detection in Product Reviews

An Impact Analysis of Features in a Classification Approach to Irony Detection in Product Reviews Universität Bielefeld June 27, 2014 An Impact Analysis of Features in a Classification Approach to Irony Detection in Product Reviews Konstantin Buschmeier, Philipp Cimiano, Roman Klinger Semantic Computing

More information

Your Sentiment Precedes You: Using an author s historical tweets to predict sarcasm

Your Sentiment Precedes You: Using an author s historical tweets to predict sarcasm Your Sentiment Precedes You: Using an author s historical tweets to predict sarcasm Anupam Khattri 1 Aditya Joshi 2,3,4 Pushpak Bhattacharyya 2 Mark James Carman 3 1 IIT Kharagpur, India, 2 IIT Bombay,

More information

Harnessing Context Incongruity for Sarcasm Detection

Harnessing Context Incongruity for Sarcasm Detection Harnessing Context Incongruity for Sarcasm Detection Aditya Joshi 1,2,3 Vinita Sharma 1 Pushpak Bhattacharyya 1 1 IIT Bombay, India, 2 Monash University, Australia 3 IITB-Monash Research Academy, India

More information

How Do Cultural Differences Impact the Quality of Sarcasm Annotation?: A Case Study of Indian Annotators and American Text

How Do Cultural Differences Impact the Quality of Sarcasm Annotation?: A Case Study of Indian Annotators and American Text How Do Cultural Differences Impact the Quality of Sarcasm Annotation?: A Case Study of Indian Annotators and American Text Aditya Joshi 1,2,3 Pushpak Bhattacharyya 1 Mark Carman 2 Jaya Saraswati 1 Rajita

More information

Detecting Sarcasm in English Text. Andrew James Pielage. Artificial Intelligence MSc 2012/2013

Detecting Sarcasm in English Text. Andrew James Pielage. Artificial Intelligence MSc 2012/2013 Detecting Sarcasm in English Text Andrew James Pielage Artificial Intelligence MSc 0/0 The candidate confirms that the work submitted is their own and the appropriate credit has been given where reference

More information

Introduction to Natural Language Processing This week & next week: Classification Sentiment Lexicons

Introduction to Natural Language Processing This week & next week: Classification Sentiment Lexicons Introduction to Natural Language Processing This week & next week: Classification Sentiment Lexicons Center for Games and Playable Media http://games.soe.ucsc.edu Kendall review of HW 2 Next two weeks

More information

arxiv: v1 [cs.cl] 3 May 2018

arxiv: v1 [cs.cl] 3 May 2018 Binarizer at SemEval-2018 Task 3: Parsing dependency and deep learning for irony detection Nishant Nikhil IIT Kharagpur Kharagpur, India nishantnikhil@iitkgp.ac.in Muktabh Mayank Srivastava ParallelDots,

More information

This is a repository copy of Who cares about sarcastic tweets? Investigating the impact of sarcasm on sentiment analysis.

This is a repository copy of Who cares about sarcastic tweets? Investigating the impact of sarcasm on sentiment analysis. This is a repository copy of Who cares about sarcastic tweets? Investigating the impact of sarcasm on sentiment analysis. White Rose Research Online URL for this paper: http://eprints.whiterose.ac.uk/130763/

More information

Scalable Semantic Parsing with Partial Ontologies ACL 2015

Scalable Semantic Parsing with Partial Ontologies ACL 2015 Scalable Semantic Parsing with Partial Ontologies Eunsol Choi Tom Kwiatkowski Luke Zettlemoyer ACL 2015 1 Semantic Parsing: Long-term Goal Build meaning representations for open-domain texts How many people

More information

Irony and Sarcasm: Corpus Generation and Analysis Using Crowdsourcing

Irony and Sarcasm: Corpus Generation and Analysis Using Crowdsourcing Irony and Sarcasm: Corpus Generation and Analysis Using Crowdsourcing Elena Filatova Computer and Information Science Department Fordham University filatova@cis.fordham.edu Abstract The ability to reliably

More information

gresearch Focus Cognitive Sciences

gresearch Focus Cognitive Sciences Learning about Music Cognition by Asking MIR Questions Sebastian Stober August 12, 2016 CogMIR, New York City sstober@uni-potsdam.de http://www.uni-potsdam.de/mlcog/ MLC g Machine Learning in Cognitive

More information

Music Genre Classification and Variance Comparison on Number of Genres

Music Genre Classification and Variance Comparison on Number of Genres Music Genre Classification and Variance Comparison on Number of Genres Miguel Francisco, miguelf@stanford.edu Dong Myung Kim, dmk8265@stanford.edu 1 Abstract In this project we apply machine learning techniques

More information

First Stage of an Automated Content-Based Citation Analysis Study: Detection of Citation Sentences 1

First Stage of an Automated Content-Based Citation Analysis Study: Detection of Citation Sentences 1 First Stage of an Automated Content-Based Citation Analysis Study: Detection of Citation Sentences 1 Zehra Taşkın *, Umut Al * and Umut Sezen ** * {ztaskin; umutal}@hacettepe.edu.tr Department of Information

More information

Automatic Polyphonic Music Composition Using the EMILE and ABL Grammar Inductors *

Automatic Polyphonic Music Composition Using the EMILE and ABL Grammar Inductors * Automatic Polyphonic Music Composition Using the EMILE and ABL Grammar Inductors * David Ortega-Pacheco and Hiram Calvo Centro de Investigación en Computación, Instituto Politécnico Nacional, Av. Juan

More information

Bilbo-Val: Automatic Identification of Bibliographical Zone in Papers

Bilbo-Val: Automatic Identification of Bibliographical Zone in Papers Bilbo-Val: Automatic Identification of Bibliographical Zone in Papers Amal Htait, Sebastien Fournier and Patrice Bellot Aix Marseille University, CNRS, ENSAM, University of Toulon, LSIS UMR 7296,13397,

More information

Bi-Modal Music Emotion Recognition: Novel Lyrical Features and Dataset

Bi-Modal Music Emotion Recognition: Novel Lyrical Features and Dataset Bi-Modal Music Emotion Recognition: Novel Lyrical Features and Dataset Ricardo Malheiro, Renato Panda, Paulo Gomes, Rui Paiva CISUC Centre for Informatics and Systems of the University of Coimbra {rsmal,

More information

Singer Traits Identification using Deep Neural Network

Singer Traits Identification using Deep Neural Network Singer Traits Identification using Deep Neural Network Zhengshan Shi Center for Computer Research in Music and Acoustics Stanford University kittyshi@stanford.edu Abstract The author investigates automatic

More information

Sarcasm as Contrast between a Positive Sentiment and Negative Situation

Sarcasm as Contrast between a Positive Sentiment and Negative Situation Sarcasm as Contrast between a Positive Sentiment and Negative Situation Ellen Riloff, Ashequl Qadir, Prafulla Surve, Lalindra De Silva, Nathan Gilbert, Ruihong Huang School Of Computing University of Utah

More information

DICTIONARY OF SARCASM PDF

DICTIONARY OF SARCASM PDF DICTIONARY OF SARCASM PDF ==> Download: DICTIONARY OF SARCASM PDF DICTIONARY OF SARCASM PDF - Are you searching for Dictionary Of Sarcasm Books? Now, you will be happy that at this time Dictionary Of Sarcasm

More information

WHAT MAKES FOR A HIT POP SONG? WHAT MAKES FOR A POP SONG?

WHAT MAKES FOR A HIT POP SONG? WHAT MAKES FOR A POP SONG? WHAT MAKES FOR A HIT POP SONG? WHAT MAKES FOR A POP SONG? NICHOLAS BORG AND GEORGE HOKKANEN Abstract. The possibility of a hit song prediction algorithm is both academically interesting and industry motivated.

More information

Automatic Music Clustering using Audio Attributes

Automatic Music Clustering using Audio Attributes Automatic Music Clustering using Audio Attributes Abhishek Sen BTech (Electronics) Veermata Jijabai Technological Institute (VJTI), Mumbai, India abhishekpsen@gmail.com Abstract Music brings people together,

More information

Dynamic Allocation of Crowd Contributions for Sentiment Analysis during the 2016 U.S. Presidential Election

Dynamic Allocation of Crowd Contributions for Sentiment Analysis during the 2016 U.S. Presidential Election Dynamic Allocation of Crowd Contributions for Sentiment Analysis during the 2016 U.S. Presidential Election Mehrnoosh Sameki, Mattia Gentil, Kate K. Mays, Lei Guo, and Margrit Betke Boston University Abstract

More information

Sentiment Aggregation using ConceptNet Ontology

Sentiment Aggregation using ConceptNet Ontology Sentiment Aggregation using ConceptNet Ontology Subhabrata Mukherjee Sachindra Joshi IBM Research - India 7th International Joint Conference on Natural Language Processing (IJCNLP 2013), Nagoya, Japan

More information

Introduction to Natural Language Processing Phase 2: Question Answering

Introduction to Natural Language Processing Phase 2: Question Answering Introduction to Natural Language Processing Phase 2: Question Answering Center for Games and Playable Media http://games.soe.ucsc.edu The plan for the next two weeks Week9: Simple use of VN WN APIs. Homework

More information

Lecture 9 Source Separation

Lecture 9 Source Separation 10420CS 573100 音樂資訊檢索 Music Information Retrieval Lecture 9 Source Separation Yi-Hsuan Yang Ph.D. http://www.citi.sinica.edu.tw/pages/yang/ yang@citi.sinica.edu.tw Music & Audio Computing Lab, Research

More information

World Journal of Engineering Research and Technology WJERT

World Journal of Engineering Research and Technology WJERT wjert, 2018, Vol. 4, Issue 4, 218-224. Review Article ISSN 2454-695X Maheswari et al. WJERT www.wjert.org SJIF Impact Factor: 5.218 SARCASM DETECTION AND SURVEYING USER AFFECTATION S. Maheswari* 1 and

More information

The Million Song Dataset

The Million Song Dataset The Million Song Dataset AUDIO FEATURES The Million Song Dataset There is no data like more data Bob Mercer of IBM (1985). T. Bertin-Mahieux, D.P.W. Ellis, B. Whitman, P. Lamere, The Million Song Dataset,

More information

Detecting Hoaxes, Frauds and Deception in Writing Style Online

Detecting Hoaxes, Frauds and Deception in Writing Style Online Detecting Hoaxes, Frauds and Deception in Writing Style Online Sadia Afroz, Michael Brennan and Rachel Greenstadt Privacy, Security and Automation Lab Drexel University What do we mean by deception? Let

More information

Identifying functions of citations with CiTalO

Identifying functions of citations with CiTalO Identifying functions of citations with CiTalO Angelo Di Iorio 1, Andrea Giovanni Nuzzolese 1,2, and Silvio Peroni 1,2 1 Department of Computer Science and Engineering, University of Bologna (Italy) 2

More information

Semi-supervised Musical Instrument Recognition

Semi-supervised Musical Instrument Recognition Semi-supervised Musical Instrument Recognition Master s Thesis Presentation Aleksandr Diment 1 1 Tampere niversity of Technology, Finland Supervisors: Adj.Prof. Tuomas Virtanen, MSc Toni Heittola 17 May

More information

Speech and Speaker Recognition for the Command of an Industrial Robot

Speech and Speaker Recognition for the Command of an Industrial Robot Speech and Speaker Recognition for the Command of an Industrial Robot CLAUDIA MOISA*, HELGA SILAGHI*, ANDREI SILAGHI** *Dept. of Electric Drives and Automation University of Oradea University Street, nr.

More information

Can Song Lyrics Predict Genre? Danny Diekroeger Stanford University

Can Song Lyrics Predict Genre? Danny Diekroeger Stanford University Can Song Lyrics Predict Genre? Danny Diekroeger Stanford University danny1@stanford.edu 1. Motivation and Goal Music has long been a way for people to express their emotions. And because we all have a

More information

Acoustic Prosodic Features In Sarcastic Utterances

Acoustic Prosodic Features In Sarcastic Utterances Acoustic Prosodic Features In Sarcastic Utterances Introduction: The main goal of this study is to determine if sarcasm can be detected through the analysis of prosodic cues or acoustic features automatically.

More information

Neural Network Predicating Movie Box Office Performance

Neural Network Predicating Movie Box Office Performance Neural Network Predicating Movie Box Office Performance Alex Larson ECE 539 Fall 2013 Abstract The movie industry is a large part of modern day culture. With the rise of websites like Netflix, where people

More information

A combination of opinion mining and social network techniques for discussion analysis

A combination of opinion mining and social network techniques for discussion analysis A combination of opinion mining and social network techniques for discussion analysis Anna Stavrianou, Julien Velcin, Jean-Hugues Chauchat ERIC Laboratoire - Université Lumière Lyon 2 Université de Lyon

More information

Sparse, Contextually Informed Models for Irony Detection: Exploiting User Communities, Entities and Sentiment

Sparse, Contextually Informed Models for Irony Detection: Exploiting User Communities, Entities and Sentiment Sparse, Contextually Informed Models for Irony Detection: Exploiting User Communities, Entities and Sentiment Byron C. Wallace University of Texas at Austin byron.wallace@utexas.edu Do Kook Choe and Eugene

More information

Pandas are becoming extinct because of humans. Just imagine the world without the beauty of Pandas.

Pandas are becoming extinct because of humans. Just imagine the world without the beauty of Pandas. Why are Humans so thoughtless that they are driving animals to die? Jianna Taylor 5/27/14 8:20 AM Comment [1]: The writer begins with an overarching question that drove her research and will focus her

More information

Some Experiments in Humour Recognition Using the Italian Wikiquote Collection

Some Experiments in Humour Recognition Using the Italian Wikiquote Collection Some Experiments in Humour Recognition Using the Italian Wikiquote Collection Davide Buscaldi and Paolo Rosso Dpto. de Sistemas Informáticos y Computación (DSIC), Universidad Politécnica de Valencia, Spain

More information

19 th INTERNATIONAL CONGRESS ON ACOUSTICS MADRID, 2-7 SEPTEMBER 2007

19 th INTERNATIONAL CONGRESS ON ACOUSTICS MADRID, 2-7 SEPTEMBER 2007 19 th INTERNATIONAL CONGRESS ON ACOUSTICS MADRID, 2-7 SEPTEMBER 2007 AN HMM BASED INVESTIGATION OF DIFFERENCES BETWEEN MUSICAL INSTRUMENTS OF THE SAME TYPE PACS: 43.75.-z Eichner, Matthias; Wolff, Matthias;

More information

Supervised Learning in Genre Classification

Supervised Learning in Genre Classification Supervised Learning in Genre Classification Introduction & Motivation Mohit Rajani and Luke Ekkizogloy {i.mohit,luke.ekkizogloy}@gmail.com Stanford University, CS229: Machine Learning, 2009 Now that music

More information

Understanding Book Popularity on Goodreads

Understanding Book Popularity on Goodreads Understanding Book Popularity on Goodreads Suman Kalyan Maity sumankalyan.maity@ cse.iitkgp.ernet.in Ayush Kumar ayush235317@gmail.com Ankan Mullick Bing Microsoft India ankan.mullick@microsoft.com Vishnu

More information

Kindle Paperwhite User Manual Guide To Enjoying Your Ereader

Kindle Paperwhite User Manual Guide To Enjoying Your Ereader Kindle Paperwhite User Manual Guide To Enjoying Your Ereader Buy your Kindle Paperwhite and protective cover form Boots.com and collect enjoying your content, simply close the cover to put your Kindle

More information

ONE SENSOR MICROPHONE ARRAY APPLICATION IN SOURCE LOCALIZATION. Hsin-Chu, Taiwan

ONE SENSOR MICROPHONE ARRAY APPLICATION IN SOURCE LOCALIZATION. Hsin-Chu, Taiwan ICSV14 Cairns Australia 9-12 July, 2007 ONE SENSOR MICROPHONE ARRAY APPLICATION IN SOURCE LOCALIZATION Percy F. Wang 1 and Mingsian R. Bai 2 1 Southern Research Institute/University of Alabama at Birmingham

More information

Rhetorical Structure Theory

Rhetorical Structure Theory Domain-Dependent Rhetorical Model Rhetorical Structure Theory Regina Barzilay EECS Department MIT Domain: Scientific Articles Humans exhibit high agreement on the annotation scheme The scheme covers only

More information

Are Word Embedding-based Features Useful for Sarcasm Detection?

Are Word Embedding-based Features Useful for Sarcasm Detection? Are Word Embedding-based Features Useful for Sarcasm Detection? Aditya Joshi 1,2,3 Vaibhav Tripathi 1 Kevin Patel 1 Pushpak Bhattacharyya 1 Mark Carman 2 1 Indian Institute of Technology Bombay, India

More information

Research & Development. White Paper WHP 232. A Large Scale Experiment for Mood-based Classification of TV Programmes BRITISH BROADCASTING CORPORATION

Research & Development. White Paper WHP 232. A Large Scale Experiment for Mood-based Classification of TV Programmes BRITISH BROADCASTING CORPORATION Research & Development White Paper WHP 232 September 2012 A Large Scale Experiment for Mood-based Classification of TV Programmes Jana Eggink, Denise Bland BRITISH BROADCASTING CORPORATION White Paper

More information

Finding Sarcasm in Reddit Postings: A Deep Learning Approach

Finding Sarcasm in Reddit Postings: A Deep Learning Approach Finding Sarcasm in Reddit Postings: A Deep Learning Approach Nick Guo, Ruchir Shah {nickguo, ruchirfs}@stanford.edu Abstract We use the recently published Self-Annotated Reddit Corpus (SARC) with a recurrent

More information

Sentence and Expression Level Annotation of Opinions in User-Generated Discourse

Sentence and Expression Level Annotation of Opinions in User-Generated Discourse Sentence and Expression Level Annotation of Opinions in User-Generated Discourse Yayang Tian University of Pennsylvania yaytian@cis.upenn.edu February 20, 2013 Yayang Tian (UPenn) Sentence and Expression

More information

Dimensions of Argumentation in Social Media

Dimensions of Argumentation in Social Media Dimensions of Argumentation in Social Media Jodi Schneider 1, Brian Davis 1, and Adam Wyner 2 1 Digital Enterprise Research Institute, National University of Ireland, Galway, firstname.lastname@deri.org

More information

Universität Bamberg Angewandte Informatik. Seminar KI: gestern, heute, morgen. We are Humor Beings. Understanding and Predicting visual Humor

Universität Bamberg Angewandte Informatik. Seminar KI: gestern, heute, morgen. We are Humor Beings. Understanding and Predicting visual Humor Universität Bamberg Angewandte Informatik Seminar KI: gestern, heute, morgen We are Humor Beings. Understanding and Predicting visual Humor by Daniel Tremmel 18. Februar 2017 advised by Professor Dr. Ute

More information

Using Genre Classification to Make Content-based Music Recommendations

Using Genre Classification to Make Content-based Music Recommendations Using Genre Classification to Make Content-based Music Recommendations Robbie Jones (rmjones@stanford.edu) and Karen Lu (karenlu@stanford.edu) CS 221, Autumn 2016 Stanford University I. Introduction Our

More information

MUSI-6201 Computational Music Analysis

MUSI-6201 Computational Music Analysis MUSI-6201 Computational Music Analysis Part 9.1: Genre Classification alexander lerch November 4, 2015 temporal analysis overview text book Chapter 8: Musical Genre, Similarity, and Mood (pp. 151 155)

More information

Research on sampling of vibration signals based on compressed sensing

Research on sampling of vibration signals based on compressed sensing Research on sampling of vibration signals based on compressed sensing Hongchun Sun 1, Zhiyuan Wang 2, Yong Xu 3 School of Mechanical Engineering and Automation, Northeastern University, Shenyang, China

More information

A Discriminative Approach to Topic-based Citation Recommendation

A Discriminative Approach to Topic-based Citation Recommendation A Discriminative Approach to Topic-based Citation Recommendation Jie Tang and Jing Zhang Department of Computer Science and Technology, Tsinghua University, Beijing, 100084. China jietang@tsinghua.edu.cn,zhangjing@keg.cs.tsinghua.edu.cn

More information

Music Information Retrieval (MIR)

Music Information Retrieval (MIR) Ringvorlesung Perspektiven der Informatik Sommersemester 2010 Meinard Müller Universität des Saarlandes und MPI Informatik meinard@mpi-inf.mpg.de Priv.-Doz. Dr. Meinard Müller 2007 Habilitation, Bonn 2007

More information

ABSOLUTE OR RELATIVE? A NEW APPROACH TO BUILDING FEATURE VECTORS FOR EMOTION TRACKING IN MUSIC

ABSOLUTE OR RELATIVE? A NEW APPROACH TO BUILDING FEATURE VECTORS FOR EMOTION TRACKING IN MUSIC ABSOLUTE OR RELATIVE? A NEW APPROACH TO BUILDING FEATURE VECTORS FOR EMOTION TRACKING IN MUSIC Vaiva Imbrasaitė, Peter Robinson Computer Laboratory, University of Cambridge, UK Vaiva.Imbrasaite@cl.cam.ac.uk

More information

Exploring Citations for Conflict of Interest Detection in Peer Review System

Exploring Citations for Conflict of Interest Detection in Peer Review System International Journal of Computer Information Systems and Industrial Management Applications. ISSN 2150-7988 Volume 4 (2012) pp. 283-299 MIR Labs, www.mirlabs.net/ijcisim/index.html Exploring Citations

More information

Figures in Scientific Open Access Publications

Figures in Scientific Open Access Publications Figures in Scientific Open Access Publications Lucia Sohmen 2[0000 0002 2593 8754], Jean Charbonnier 1[0000 0001 6489 7687], Ina Blümel 1,2[0000 0002 3075 7640], Christian Wartena 1[0000 0001 5483 1529],

More information

Decision-Maker Preference Modeling in Interactive Multiobjective Optimization

Decision-Maker Preference Modeling in Interactive Multiobjective Optimization Decision-Maker Preference Modeling in Interactive Multiobjective Optimization 7th International Conference on Evolutionary Multi-Criterion Optimization Introduction This work presents the results of the

More information

DAY 1. Intelligent Audio Systems: A review of the foundations and applications of semantic audio analysis and music information retrieval

DAY 1. Intelligent Audio Systems: A review of the foundations and applications of semantic audio analysis and music information retrieval DAY 1 Intelligent Audio Systems: A review of the foundations and applications of semantic audio analysis and music information retrieval Jay LeBoeuf Imagine Research jay{at}imagine-research.com Rebecca

More information

Instrument Recognition in Polyphonic Mixtures Using Spectral Envelopes

Instrument Recognition in Polyphonic Mixtures Using Spectral Envelopes Instrument Recognition in Polyphonic Mixtures Using Spectral Envelopes hello Jay Biernat Third author University of Rochester University of Rochester Affiliation3 words jbiernat@ur.rochester.edu author3@ismir.edu

More information

Semantic Role Labeling of Emotions in Tweets. Saif Mohammad, Xiaodan Zhu, and Joel Martin! National Research Council Canada!

Semantic Role Labeling of Emotions in Tweets. Saif Mohammad, Xiaodan Zhu, and Joel Martin! National Research Council Canada! Semantic Role Labeling of Emotions in Tweets Saif Mohammad, Xiaodan Zhu, and Joel Martin! National Research Council Canada! 1 Early Project Specifications Emotion analysis of tweets! Who is feeling?! What

More information

Understanding People in Low Resourced Languages

Understanding People in Low Resourced Languages Understanding People in Low Resourced Languages Thesis submitted in partial fulfillment of the requirements for the degree of Masters of Science in Computer Science by Research by Sahil Swami 201302071

More information

Predicting Time-Varying Musical Emotion Distributions from Multi-Track Audio

Predicting Time-Varying Musical Emotion Distributions from Multi-Track Audio Predicting Time-Varying Musical Emotion Distributions from Multi-Track Audio Jeffrey Scott, Erik M. Schmidt, Matthew Prockup, Brandon Morton, and Youngmoo E. Kim Music and Entertainment Technology Laboratory

More information

A Computational Model for Discriminating Music Performers

A Computational Model for Discriminating Music Performers A Computational Model for Discriminating Music Performers Efstathios Stamatatos Austrian Research Institute for Artificial Intelligence Schottengasse 3, A-1010 Vienna stathis@ai.univie.ac.at Abstract In

More information

Skip Length and Inter-Starvation Distance as a Combined Metric to Assess the Quality of Transmitted Video

Skip Length and Inter-Starvation Distance as a Combined Metric to Assess the Quality of Transmitted Video Skip Length and Inter-Starvation Distance as a Combined Metric to Assess the Quality of Transmitted Video Mohamed Hassan, Taha Landolsi, Husameldin Mukhtar, and Tamer Shanableh College of Engineering American

More information

Approaches for Computational Sarcasm Detection: A Survey

Approaches for Computational Sarcasm Detection: A Survey Approaches for Computational Sarcasm Detection: A Survey Lakshya Kumar, Arpan Somani and Pushpak Bhattacharyya Dept. of Computer Science and Engineering Indian Institute of Technology, Powai Mumbai, Maharashtra,

More information

M1 OSCILLOSCOPE TOOLS

M1 OSCILLOSCOPE TOOLS Calibrating a National Instruments 1 Digitizer System for use with M1 Oscilloscope Tools ASA Application Note 11-02 Introduction In ASA s experience of providing value-added functionality/software to oscilloscopes/digitizers

More information

Music Information Retrieval (MIR)

Music Information Retrieval (MIR) Ringvorlesung Perspektiven der Informatik Wintersemester 2011/2012 Meinard Müller Universität des Saarlandes und MPI Informatik meinard@mpi-inf.mpg.de Priv.-Doz. Dr. Meinard Müller 2007 Habilitation, Bonn

More information

TechNote: MuraTool CA: 1 2/9/00. Figure 1: High contrast fringe ring mura on a microdisplay

TechNote: MuraTool CA: 1 2/9/00. Figure 1: High contrast fringe ring mura on a microdisplay Mura: The Japanese word for blemish has been widely adopted by the display industry to describe almost all irregular luminosity variation defects in liquid crystal displays. Mura defects are caused by

More information

Kaplan High School Summer Reading Program English I

Kaplan High School Summer Reading Program English I Kaplan High School Summer Reading Program English I Dear Future Students, The purpose of the Summer Reading Program is to encourage students to prepare for the upcoming school year. Please be advised that

More information

A Large Scale Experiment for Mood-Based Classification of TV Programmes

A Large Scale Experiment for Mood-Based Classification of TV Programmes 2012 IEEE International Conference on Multimedia and Expo A Large Scale Experiment for Mood-Based Classification of TV Programmes Jana Eggink BBC R&D 56 Wood Lane London, W12 7SB, UK jana.eggink@bbc.co.uk

More information

ITU-T Y Functional framework and capabilities of the Internet of things

ITU-T Y Functional framework and capabilities of the Internet of things I n t e r n a t i o n a l T e l e c o m m u n i c a t i o n U n i o n ITU-T Y.2068 TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU (03/2015) SERIES Y: GLOBAL INFORMATION INFRASTRUCTURE, INTERNET PROTOCOL

More information

a shopkeeper (do not accept councillor on its own)

a shopkeeper (do not accept councillor on its own) Questions: 1. What is Mr Evans occupation? (1) a shopkeeper (do not accept councillor on its own) 2. Which word from the list below best describes Carrie and Nick s feelings towards Mr Evans in paragraph

More information

Amazon kindle book downloads

Amazon kindle book downloads Amazon kindle book downloads The Borg System is 100 % Amazon kindle book downloads Kindle ist dünner und leichter als der Kindle der Vorgängergeneration, und jetzt auch in Schwarz oder Weiß erhältlich

More information

TrackIt (Better!) Miguel Pernas IST- Instituto Superior Técnico.

TrackIt (Better!) Miguel Pernas IST- Instituto Superior Técnico. TrackIt (Better!) Miguel Pernas IST- Instituto Superior Técnico miguel.pernas@ist.utl.pt Abstract. During the last years, the popularity of GPS tracking devices in sports and outdoor activities has been

More information

Feature-Based Analysis of Haydn String Quartets

Feature-Based Analysis of Haydn String Quartets Feature-Based Analysis of Haydn String Quartets Lawson Wong 5/5/2 Introduction When listening to multi-movement works, amateur listeners have almost certainly asked the following situation : Am I still

More information

Checking Out ebooks From The Sunflower elibrary (Preparation)

Checking Out ebooks From The Sunflower elibrary (Preparation) (Preparation) To get started you ll need a Library Card. Library cards can be obtained at the circulation desk. You ll need a picture ID with current address. If your ID does not have your current address,

More information

The decoder in statistical machine translation: how does it work?

The decoder in statistical machine translation: how does it work? The decoder in statistical machine translation: how does it work? Alexandre Patry RALI/DIRO Université de Montréal June 20, 2006 Alexandre Patry (RALI) The decoder in SMT June 20, 2006 1 / 42 Machine translation

More information

Detecting Musical Key with Supervised Learning

Detecting Musical Key with Supervised Learning Detecting Musical Key with Supervised Learning Robert Mahieu Department of Electrical Engineering Stanford University rmahieu@stanford.edu Abstract This paper proposes and tests performance of two different

More information

ITU-T Y.4552/Y.2078 (02/2016) Application support models of the Internet of things

ITU-T Y.4552/Y.2078 (02/2016) Application support models of the Internet of things I n t e r n a t i o n a l T e l e c o m m u n i c a t i o n U n i o n ITU-T TELECOMMUNICATION STANDARDIZATION SECTOR OF ITU Y.4552/Y.2078 (02/2016) SERIES Y: GLOBAL INFORMATION INFRASTRUCTURE, INTERNET

More information

Aiming for a Moving Target: E-books in Libraries. Diana Weaver Director, Basehor Community Library

Aiming for a Moving Target: E-books in Libraries. Diana Weaver Director, Basehor Community Library Aiming for a Moving Target: E-books in Libraries Diana Weaver Director, Basehor Community Library Author Editor Publisher Distributor Sharing Formats Devices Platforms Software Storage Access User names

More information

Sentiment Analysis. Andrea Esuli

Sentiment Analysis. Andrea Esuli Sentiment Analysis Andrea Esuli What is Sentiment Analysis? What is Sentiment Analysis? Sentiment analysis and opinion mining is the field of study that analyzes people s opinions, sentiments, evaluations,

More information

Point of View, Perspective, Audience, and Voice

Point of View, Perspective, Audience, and Voice Lesson Da 2 Day 1 A story can be told from more than one point of view. If a story is written by someone who is a character in the story, then it is said that the story is written in firstperson point

More information

Introduction to Sentiment Analysis. Text Analytics - Andrea Esuli

Introduction to Sentiment Analysis. Text Analytics - Andrea Esuli Introduction to Sentiment Analysis Text Analytics - Andrea Esuli What is Sentiment Analysis? What is Sentiment Analysis? Sentiment analysis and opinion mining is the field of study that analyzes people

More information

arxiv:submit/ [cs.cv] 8 Aug 2016

arxiv:submit/ [cs.cv] 8 Aug 2016 Detecting Sarcasm in Multimodal Social Platforms arxiv:submit/1633907 [cs.cv] 8 Aug 2016 ABSTRACT Rossano Schifanella University of Turin Corso Svizzera 185 10149, Turin, Italy schifane@di.unito.it Sarcasm

More information

TELEVISIONS. Overview PRODUCT CATEGORY REPORT

TELEVISIONS. Overview PRODUCT CATEGORY REPORT PRODUCT CATEGORY REPORT TELEVISIONS Overview The television set is an integral part of American family life. Even with the ever-increasing proliferation of smartphones and other visual devices, Nielsen

More information

Why t? TEACHER NOTES MATH NSPIRED. Math Objectives. Vocabulary. About the Lesson

Why t? TEACHER NOTES MATH NSPIRED. Math Objectives. Vocabulary. About the Lesson Math Objectives Students will recognize that when the population standard deviation is unknown, it must be estimated from the sample in order to calculate a standardized test statistic. Students will recognize

More information

Renovating Descriptive Practices: A Presentation for the ARL Fellows. Karen Calhoun OCLC Vice President WorldCat & Metadata Services November 1, 2007

Renovating Descriptive Practices: A Presentation for the ARL Fellows. Karen Calhoun OCLC Vice President WorldCat & Metadata Services November 1, 2007 Renovating Descriptive Practices: A Presentation for the ARL Fellows Karen Calhoun OCLC Vice President WorldCat & Metadata Services November 1, 2007 Deconstruction AND Reinvention Phoenix detail from Aberdeen

More information

Removal of Cable and Connector Dispersion in Time-Domain Waveform Measurements on 40Gb Integrated Circuits (slide presentation only)

Removal of Cable and Connector Dispersion in Time-Domain Waveform Measurements on 40Gb Integrated Circuits (slide presentation only) Jan Verspecht bvba Gertrudeveld 15 1840 Steenhuffel Belgium email: contact@janverspecht.com web: http://www.janverspecht.com Removal of Cable and Connector Dispersion in Time-Domain Waveform Measurements

More information

Temporal patterns of happiness and sarcasm detection in social media (Twitter)

Temporal patterns of happiness and sarcasm detection in social media (Twitter) Temporal patterns of happiness and sarcasm detection in social media (Twitter) Pradeep Kumar NPSO Innovation Day November 22, 2017 Our Data Science Team Patricia Prüfer Pradeep Kumar Marcia den Uijl Next

More information

#SarcasmDetection Is Soooo General! Towards a Domain-Independent Approach for Detecting Sarcasm

#SarcasmDetection Is Soooo General! Towards a Domain-Independent Approach for Detecting Sarcasm Proceedings of the Thirtieth International Florida Artificial Intelligence Research Society Conference #SarcasmDetection Is Soooo General! Towards a Domain-Independent Approach for Detecting Sarcasm Natalie

More information

Sample assessment instrument and student responses. Extended response: Written persuasive text suitable for a public audience

Sample assessment instrument and student responses. Extended response: Written persuasive text suitable for a public audience Extended response: Written persuasive text suitable for a public audience This sample is intended to inform the design of assessment instruments in the senior phase of learning. It highlights the qualities

More information

Outline. Why do we classify? Audio Classification

Outline. Why do we classify? Audio Classification Outline Introduction Music Information Retrieval Classification Process Steps Pitch Histograms Multiple Pitch Detection Algorithm Musical Genre Classification Implementation Future Work Why do we classify

More information

Characterization and improvement of unpatterned wafer defect review on SEMs

Characterization and improvement of unpatterned wafer defect review on SEMs Characterization and improvement of unpatterned wafer defect review on SEMs Alan S. Parkes *, Zane Marek ** JEOL USA, Inc. 11 Dearborn Road, Peabody, MA 01960 ABSTRACT Defect Scatter Analysis (DSA) provides

More information

DOWNLOAD OR READ : OXFORD POCKET THESAURUS PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : OXFORD POCKET THESAURUS PDF EBOOK EPUB MOBI DOWNLOAD OR READ : OXFORD POCKET THESAURUS PDF EBOOK EPUB MOBI Page 1 Page 2 oxford pocket thesaurus oxford pocket thesaurus pdf Read Download Pocket Oxford Dictionary And Thesaurus PDF PDF Pocket Oxford

More information

Kavita Ganesan, ChengXiang Zhai, Jiawei Han University of Urbana Champaign

Kavita Ganesan, ChengXiang Zhai, Jiawei Han University of Urbana Champaign Kavita Ganesan, ChengXiang Zhai, Jiawei Han University of Illinois @ Urbana Champaign Opinion Summary for ipod Existing methods: Generate structured ratings for an entity [Lu et al., 2009; Lerman et al.,

More information