COSC282 BIG DATA ANALYTICS FALL 2015 LECTURE 11 - OCT 21

Size: px
Start display at page:

Download "COSC282 BIG DATA ANALYTICS FALL 2015 LECTURE 11 - OCT 21"

Transcription

1 COSC282 BIG DATA ANALYTICS FALL 2015 LECTURE 11 - OCT 21 1

2 Topics for Today Assignment 6 Vector Space Model Term Weighting Term Frequency Inverse Document Frequency

3 Something about Assignment 6

4

5

6 Search Engine

7 W H AT I S O U R M I S S I O N H E R E? 7

8 Query 8 Search Results: a ranked list of documents

9 Document Retrieval It is the most important information retrieval task: document retrieval". it is to find relevant documents for a query not to find answers - that is question answering Sometimes also known as ad-hoc retrieval

10 Document Retrieval Process Information Need Document Representation Corpus Query Representation Indexing Retrieval Algorithms Index Retrieval Results Evaluation/ Feedback

11 How do Retrieval Algorithms Work?

12 How to find the relevant documents for a query? By keyword matching boolean models By similarity vector space model By imaging how to write out a query how likely a query is written with this document in mind generate with some randomness query generation language model By trusting how other people think about the documents /web pages link-based methods, pagerank, hits

13 Vector Space Model

14 Ch. 6 Formal Definition of Document Retrieval Task: rank-order the documents in the collection with respect to a query Input: a query and all documents in your collection Output: a ranked list of documents (of all documents in the collection, but you can stop early) 14

15 Basic Procedure Assign a score (say in [0, 1]) to each document in the collection This score measures how well the document and the given query match. Then, sort the scores usually in descending order of the score from the most relevant to the least relevant

16 Sec. 6.3 Vector Space Model Treat query as a tiny document Represent both query and documents as word vectors in a word space Rank documents according to their proximity to the query in the space of words

17 Represent Documents in a Space of Word Vectors Sec. 6.3 Suppose the corpus only has two words: Jealous and Gossip They form a space of Jealous and Gossip d1: gossip gossip jealous gossip gossip gossip gossip gossip gossip gossip gossip d2: gossip gossip jealous gossip gossip gossip gossip gossip gossip gossip jealous jealous jealous jealous jealous jealous jealous gossip jealous d3: jealous gossip jealous jealous jealous jealous jealous jealous jealous jealous jealous q: gossip gossip jealous gossip gossip gossip gossip gossip jealous jealous jealous jealous 17

18 Calculate the Query- Document Similarity

19 Sec. 6.3 Formalizing vector space proximity First cut: distance between the end points of the two vectors? How to do it?

20 Euclidean Distance In mathematics, the Euclidean distance or Euclidean metric is the "ordinary" (i.e. straight-line) distance between two points in Euclidean space. If if p = (p1, p2,..., pn) and q = (q1, q2,..., qn) are two points in the Euclidean space, their Euclidean distance is

21 Sec. 6.3 In a space of Jealous and Gossip Here, if you look at the content (or we say the word distributions) of each document, d2 is actually the most similar document to q However, d2 produces a bigger distance score to q d1: gossip gossip jealous gossip gossip gossip gossip gossip gossip gossip gossip d2: gossip gossip jealous gossip gossip gossip gossip gossip gossip gossip jealous jealous jealous jealous jealous jealous jealous gossip jealous d3: jealous gossip jealous jealous jealous jealous jealous jealous jealous jealous jealous q: gossip gossip jealous gossip gossip gossip gossip gossip jealous jealous jealous jealous 21

22 Sec. 6.3 In a space of Jealous and Gossip The Euclidean distance between q and d 2 is large even though the distribution of terms in the query q and the distribution of terms in the document d 2 are very similar.

23 Why Euclidean Distance is A Bad Idea for Query-Document Similarity Because Euclidean distance is large for vectors with different lengths. short query and long documents will be always have big Euclidean distance we cannot rank them fairly, as compared with others not possible to get a universal ranking

24 How can we do better?

25

26 What matters is the content similarity Here the angles between the vectors captures this similarity better, not the distance metrics.

27 Sec. 6.3 Use angle instead of distance Key idea: Rank documents according to angle with query The angle between similar vectors is small, between dissimilar vectors is large. This is exactly what we need to score a querydocument pair. This is equivalent to perform a document length normalization

28 Sec. 6.3 Document Length Normalization A vector can be (length-) normalized by dividing each of its components by its length: Dividing a vector this way makes it a unit (length) vector (on surface of unit hypersphere) Long and short documents now have comparable weights

29 Cosine similarity illustrated 12

30 Sec. 6.3 Cosine Similarity q i is the tf-idf weight of term i in the query d i is the tf-idf weight of term i in the document cos(q,d) is the cosine similarity of q and d or, equivalently, the cosine of the angle between q and d.

31 Exercise - Please go to Piazza Consider two documents D 1, D 2 and a query Q D 1 = (0.5, 0.8, 0.3), D 2 = (0.9, 0.4, 0.2), Q = (1.5, 1.0, 0)

32 Results Consider two documents D 1, D 2 and a query Q D 1 = (0.5, 0.8, 0.3), D 2 = (0.9, 0.4, 0.2), Q = (1.5, 1.0, 0)

33 What are the numbers in a vector? They are term weights to indicate the importance of a term in a document

34 Term Weighting

35 Sec. 1.1 Recall: Term-Document Matrix Antony and Cleopatra Julius Caesar The Tempest Hamlet Othello Macbeth Antony Brutus Caesar Calpurnia Cleopatra mercy worser if document contains term, 0 otherwise

36 the numbers in the matrix could be more meaningful to indicate the importance of each term in a document

37 Term Frequency How many times a term appears in a document

38 Sec. 6.2 Term-Document Matrix with Term Frequency Consider the number of occurrences of a term in a document: Each document is a word count vector in N v : a column below Antony and Cleopatra Julius Caesar The Tempest Hamlet Othello Macbeth Antony Brutus Caesar Calpurnia Cleopatra mercy worser

39 but,

40

41 Some terms are common, well less common than the stop words but still common e.g. Georgetown is uniquely important in NBA.com e.g. Georgetown appears at too many pages in our university web site, so it is not a very important term in those pages. How to discount them?

42 Inverse document frequency Document Frequency: How many documents in which a term appears Inverse Document Frequency: is the inverse of the above our way of discount the common terms

43 Sec Inverse Document Frequency (idf) df t is the document frequency of t = the number of documents that contain t df t is an inverse measure of the informativeness of t df t N N is the total number of documents We define the idf (inverse document frequency) of t by idf = log ( N/df t 10 t ) We use log (N/df t ) instead of N/df t to dampen the effect of idf. 43

44 Sec Exercise: Calculate IDF (Suppose N = 1 million) term df t idf t calpurnia 1 animal 100 sunday 1,000 fly 10,000 under 100,000 the 1,000,000 idf = log ( N/df t 10 t ) There is one idf value for each term t in a collection. 44

45 TF-IDF Term Weighting

46 Sec tf-idf weighting The tf-idf weight of a term is the product of its tf weight and its idf weight. w = log(1 + tf ) log t d t, d 10 ( N / df, t ) Best known weighting scheme in information retrieval Increases with the number of occurrences within a document Increases with the rarity of the term in the collection

47 Binary count weight matrix Antony and Cleopatra Julius Caesar The Tempest Hamlet Othello Macbeth Antony Brutus Caesar Calpurnia Cleopatra mercy worser Each document is now represented by a real-valued vector of tf-idf weights R V

48 Sec. 6.4 tf-idf weighting has many variants

49 Sec. 6.4 Weighting may differ in queries vs documents Many search engines allow for different weightings for queries vs. documents A very standard weighting scheme is: lnc.ltc Document: logarithmic tf (l as first character), no idf and cosine normalization Query: logarithmic tf (l in leftmost column), idf (t in second column), no normalization

50 Vector Space Model Advantages Simple computational framework for ranking documents given a query Any similarity measure or term weighting scheme could be used Disadvantages Assumption of term independence

51 Summary of Today Vector Space Weighting TF-IDF Term Weighting Assignment 6 due today Midterm next Wed

Inverted Index Construction

Inverted Index Construction Inverted Index Construction Adapted from Lectures by Prabhakar Raghavan (Yahoo and Stanford) and Christopher Manning (Stanford) Prasad L3InvertedIndex 1 Unstructured data in 1650 Which plays of Shakespeare

More information

Learning multi-grained aspect target sequence for Chinese sentiment analysis. H Peng, Y Ma, Y Li, E Cambria Knowledge-Based Systems (2018)

Learning multi-grained aspect target sequence for Chinese sentiment analysis. H Peng, Y Ma, Y Li, E Cambria Knowledge-Based Systems (2018) Tutorial Learning multi-grained aspect target sequence for Chinese sentiment analysis H Peng, Y Ma, Y Li, E Cambria Knowledge-Based Systems (28) Ideas Task: Aspect term sentiment classification Problems

More information

CIS530 Homework 3: Vector Space Models

CIS530 Homework 3: Vector Space Models CIS530 Homework 3: Vector Space Models Maria Kustikova (mkust) and Devanshu Jain (devjain) Due Date: January 31, 2018 1 Testing In order to ensure that the implementation of functions (create term document

More information

CIS530 HW3. Ignacio Arranz, Jishnu Renugopal January 30, 2018

CIS530 HW3. Ignacio Arranz, Jishnu Renugopal January 30, 2018 CIS530 HW3 Ignacio Arranz, Jishnu Renugopal January 30, 2018 1 How do I know if my rankings are good Rank Cosine Jaccard Dice 1 All s well... All s well... All s well... 2 A Winter s Tale A Winter s Tale

More information

Indexing local features. Wed March 30 Prof. Kristen Grauman UT-Austin

Indexing local features. Wed March 30 Prof. Kristen Grauman UT-Austin Indexing local features Wed March 30 Prof. Kristen Grauman UT-Austin Matching local features Kristen Grauman Matching local features? Image 1 Image 2 To generate candidate matches, find patches that have

More information

Week 14 Query-by-Humming and Music Fingerprinting. Roger B. Dannenberg Professor of Computer Science, Art and Music Carnegie Mellon University

Week 14 Query-by-Humming and Music Fingerprinting. Roger B. Dannenberg Professor of Computer Science, Art and Music Carnegie Mellon University Week 14 Query-by-Humming and Music Fingerprinting Roger B. Dannenberg Professor of Computer Science, Art and Music Overview n Melody-Based Retrieval n Audio-Score Alignment n Music Fingerprinting 2 Metadata-based

More information

STUDY GUIDE. Romeo and Juliet WILLIAM SHAKESPEARE

STUDY GUIDE. Romeo and Juliet WILLIAM SHAKESPEARE STUDY GUIDE Romeo and Juliet WILLIAM SHAKESPEARE Hamlet Julius Caesar Macbeth The Merchant of Venice A Midsummer Night s Dream Othello Romeo and Juliet The Tempest Development and Production: Laurel Associates,

More information

Authorship Verification with the Minmax Metric

Authorship Verification with the Minmax Metric Authorship Verification with the Minmax Metric Mike Kestemont University of Antwerp mike.kestemont@uantwerp.be Justin Stover University of Oxford justin.stover@classics.ox.ac.uk Moshe Koppel Bar-Ilan University

More information

A TEXT RETRIEVAL APPROACH TO CONTENT-BASED AUDIO RETRIEVAL

A TEXT RETRIEVAL APPROACH TO CONTENT-BASED AUDIO RETRIEVAL A TEXT RETRIEVAL APPROACH TO CONTENT-BASED AUDIO RETRIEVAL Matthew Riley University of Texas at Austin mriley@gmail.com Eric Heinen University of Texas at Austin eheinen@mail.utexas.edu Joydeep Ghosh University

More information

NETFLIX MOVIE RATING ANALYSIS

NETFLIX MOVIE RATING ANALYSIS NETFLIX MOVIE RATING ANALYSIS Danny Dean EXECUTIVE SUMMARY Perhaps only a few us have wondered whether or not the number words in a movie s title could be linked to its success. You may question the relevance

More information

STUDY GUIDE. romeo and juliet William Shakespeare

STUDY GUIDE. romeo and juliet William Shakespeare STUDY GUIDE romeo and juliet William Shakespeare STUDY GUIDE Hamlet Julius Caesar King Lear Macbeth The Merchant of Venice A Midsummer Night s Dream Othello Romeo and Juliet The Tempest Twelfth Night Copyright

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

STUDY GUIDE. a midsummer night's dream William Shakespeare

STUDY GUIDE. a midsummer night's dream William Shakespeare STUDY GUIDE a midsummer night's dream William Shakespeare STUDY GUIDE Hamlet Julius Caesar King Lear Macbeth The Merchant of Venice A Midsummer Night s Dream Othello Romeo and Juliet The Tempest Twelfth

More information

Features of Shakespeare s language Shakespeare's language

Features of Shakespeare s language Shakespeare's language Shakespeare's language William Shakespeare used language to: create a sense of place seize the audience s interest and attention explore the widest range of human experience He was a genius for dramatic

More information

CPSC 121: Models of Computation. Module 1: Propositional Logic

CPSC 121: Models of Computation. Module 1: Propositional Logic CPSC 121: Models of Computation Module 1: Propositional Logic Module 1: Propositional Logic By the start of the class, you should be able to: Translate back and forth between simple natural language statements

More information

USING ARTIST SIMILARITY TO PROPAGATE SEMANTIC INFORMATION

USING ARTIST SIMILARITY TO PROPAGATE SEMANTIC INFORMATION USING ARTIST SIMILARITY TO PROPAGATE SEMANTIC INFORMATION Joon Hee Kim, Brian Tomasik, Douglas Turnbull Department of Computer Science, Swarthmore College {joonhee.kim@alum, btomasi1@alum, turnbull@cs}.swarthmore.edu

More information

DUNSINANE. 9:20 Chaparral High School Hamlet, 4.5 Measure for measure, 3.1

DUNSINANE. 9:20 Chaparral High School Hamlet, 4.5 Measure for measure, 3.1 DUNSINANE 9:20 Chaparral High School Hamlet, 4.5 Measure for measure, 3.1 9:30 Chaparral High School King Lear, 5.3 9:40 Chaparral High School Antony and Cleopatra, 5.4 Two Gentleman of Verona, 2.3 9:50

More information

MidiFind: Fast and Effec/ve Similarity Searching in Large MIDI Databases

MidiFind: Fast and Effec/ve Similarity Searching in Large MIDI Databases 1 MidiFind: Fast and Effec/ve Similarity Searching in Large MIDI Databases Gus Xia Tongbo Huang Yifei Ma Roger B. Dannenberg Christos Faloutsos Schools of Computer Science Carnegie Mellon University 2

More information

CURIE Day 3: Frequency Domain Images

CURIE Day 3: Frequency Domain Images CURIE Day 3: Frequency Domain Images Curie Academy, July 15, 2015 NAME: NAME: TA SIGN-OFFS Exercise 7 Exercise 13 Exercise 17 Making 8x8 pictures Compressing a grayscale image Satellite image debanding

More information

MYRIAD-MINDED SHAKESPEARE

MYRIAD-MINDED SHAKESPEARE MYRIAD-MINDED SHAKESPEARE Myriad-tninded Shakespeare Essays, chiefly on the tragedies and problem comedies E. A. J. Honigmann Palgrave Macmillan ISBN 978-1-349-19816-0 ISBN 978-1-349-19814-6 (ebook) DOI

More information

The mf-index: A Citation-Based Multiple Factor Index to Evaluate and Compare the Output of Scientists

The mf-index: A Citation-Based Multiple Factor Index to Evaluate and Compare the Output of Scientists c 2017 by the authors; licensee RonPub, Lübeck, Germany. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution license (http://creativecommons.org/licenses/by/4.0/).

More information

Julius Caesar by William Shakespeare

Julius Caesar by William Shakespeare Julius Caesar by William Shakespeare Big Ideas: Ambition, Loyalty, Leadership, and Integrity Essential Questions: How did the era in which Shakespeare lived influence and reflect his writing? When is ambition

More information

Homework 2 Key-finding algorithm

Homework 2 Key-finding algorithm Homework 2 Key-finding algorithm Li Su Research Center for IT Innovation, Academia, Taiwan lisu@citi.sinica.edu.tw (You don t need any solid understanding about the musical key before doing this homework,

More information

MPEG-7 AUDIO SPECTRUM BASIS AS A SIGNATURE OF VIOLIN SOUND

MPEG-7 AUDIO SPECTRUM BASIS AS A SIGNATURE OF VIOLIN SOUND MPEG-7 AUDIO SPECTRUM BASIS AS A SIGNATURE OF VIOLIN SOUND Aleksander Kaminiarz, Ewa Łukasik Institute of Computing Science, Poznań University of Technology. Piotrowo 2, 60-965 Poznań, Poland e-mail: Ewa.Lukasik@cs.put.poznan.pl

More information

Julius Caesar In Plain And Simple English: A Modern Translation And The Original Version By William Shakespeare READ ONLINE

Julius Caesar In Plain And Simple English: A Modern Translation And The Original Version By William Shakespeare READ ONLINE Julius Caesar In Plain And Simple English: A Modern Translation And The Original Version By William Shakespeare READ ONLINE If searched for the ebook Julius Caesar In Plain and Simple English: A Modern

More information

Citation & Journal Impact Analysis

Citation & Journal Impact Analysis Citation & Journal Impact Analysis Several University Library article databases may be used to gather citation data and journal impact factors. Find them at library.otago.ac.nz under Research. Citation

More information

Word Sense Disambiguation in Queries. Shaung Liu, Clement Yu, Weiyi Meng

Word Sense Disambiguation in Queries. Shaung Liu, Clement Yu, Weiyi Meng Word Sense Disambiguation in Queries Shaung Liu, Clement Yu, Weiyi Meng Objectives (1) For each content word in a query, find its sense (meaning); (2) Add terms ( synonyms, hyponyms etc of the determined

More information

Subjective Similarity of Music: Data Collection for Individuality Analysis

Subjective Similarity of Music: Data Collection for Individuality Analysis Subjective Similarity of Music: Data Collection for Individuality Analysis Shota Kawabuchi and Chiyomi Miyajima and Norihide Kitaoka and Kazuya Takeda Nagoya University, Nagoya, Japan E-mail: shota.kawabuchi@g.sp.m.is.nagoya-u.ac.jp

More information

Lesson 10 November 10, 2009 BMC Elementary

Lesson 10 November 10, 2009 BMC Elementary Lesson 10 November 10, 2009 BMC Elementary Overview. I was afraid that the problems that we were going to discuss on that lesson are too hard or too tiring for our participants. But it came out very well

More information

http://www.xkcd.com/655/ Audio Retrieval David Kauchak cs160 Fall 2009 Thanks to Doug Turnbull for some of the slides Administrative CS Colloquium vs. Wed. before Thanksgiving producers consumers 8M artists

More information

Pattern Based Melody Matching Approach to Music Information Retrieval

Pattern Based Melody Matching Approach to Music Information Retrieval Pattern Based Melody Matching Approach to Music Information Retrieval 1 D.Vikram and 2 M.Shashi 1,2 Department of CSSE, College of Engineering, Andhra University, India 1 daravikram@yahoo.co.in, 2 smogalla2000@yahoo.com

More information

University of Liverpool Library. Introduction to Journal Bibliometrics and Research Impact. Contents

University of Liverpool Library. Introduction to Journal Bibliometrics and Research Impact. Contents University of Liverpool Library Introduction to Journal Bibliometrics and Research Impact Contents Journal Citation Reports How to access JCR (Web of Knowledge) 2 Comparing the metrics for a group of journals

More information

Musical Signal Processing with LabVIEW Introduction to Audio and Musical Signals. By: Ed Doering

Musical Signal Processing with LabVIEW Introduction to Audio and Musical Signals. By: Ed Doering Musical Signal Processing with LabVIEW Introduction to Audio and Musical Signals By: Ed Doering Musical Signal Processing with LabVIEW Introduction to Audio and Musical Signals By: Ed Doering Online:

More information

Channel calculation with a Calculation Project

Channel calculation with a Calculation Project 03/17 Using channel calculation The Calculation Project allows you to perform not only statistical evaluations, but also channel-related operations, such as automated post-processing of analysis results.

More information

Introduction to Shakespeare Lesson Plan

Introduction to Shakespeare Lesson Plan Lesson Plan Video: 18 minutes Lesson: 32 minutes Pre-viewing :00 Warm-up: Ask students what their experiences with Shakespeare s plays have been. Do they find it hard to understand his plays? 2 minutes

More information

Using Generic Summarization to Improve Music Information Retrieval Tasks

Using Generic Summarization to Improve Music Information Retrieval Tasks This is the author's version of an article that has been published in this journal. Changes were made to this version by the publisher prior to publication. 1 Using Generic Summarization to Improve Music

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

Resampling Statistics. Conventional Statistics. Resampling Statistics

Resampling Statistics. Conventional Statistics. Resampling Statistics Resampling Statistics Introduction to Resampling Probability Modeling Resample add-in Bootstrapping values, vectors, matrices R boot package Conclusions Conventional Statistics Assumptions of conventional

More information

Standard reference books. Histories of literature. Unseen critical appreciation

Standard reference books. Histories of literature. Unseen critical appreciation Note Individual requirements for further reading are conditioned mainly by your own syllabus. Your lecturers and the editorial matter (introduction and notes) in your copies of the prescribed texts will

More information

SINGING is a popular social activity and a good way of expressing

SINGING is a popular social activity and a good way of expressing 396 IEEE TRANSACTIONS ON MULTIMEDIA, VOL. 17, NO. 3, MARCH 2015 Competence-Based Song Recommendation: Matching Songs to One s Singing Skill Kuang Mao, Lidan Shou, Ju Fan, Gang Chen, and Mohan S. Kankanhalli,

More information

Analysis of local and global timing and pitch change in ordinary

Analysis of local and global timing and pitch change in ordinary Alma Mater Studiorum University of Bologna, August -6 6 Analysis of local and global timing and pitch change in ordinary melodies Roger Watt Dept. of Psychology, University of Stirling, Scotland r.j.watt@stirling.ac.uk

More information

Recognising Cello Performers using Timbre Models

Recognising Cello Performers using Timbre Models Recognising Cello Performers using Timbre Models Chudy, Magdalena; Dixon, Simon For additional information about this publication click this link. http://qmro.qmul.ac.uk/jspui/handle/123456789/5013 Information

More information

Creating Mindmaps of Documents

Creating Mindmaps of Documents Creating Mindmaps of Documents Using an Example of a News Surveillance System Oskar Gross Hannu Toivonen Teemu Hynonen Esther Galbrun February 6, 2011 Outline Motivation Bisociation Network Tpf-Idf-Tpu

More information

The Shakespeare Plays: Julius Caesar By McGraw-Hill READ ONLINE

The Shakespeare Plays: Julius Caesar By McGraw-Hill READ ONLINE The Shakespeare Plays: Julius Caesar By McGraw-Hill READ ONLINE Shakespeare's Julius Caesar scene by scene, with analysis and explanatory notes. The action begins in February 44 BC. Julius Caesar has just

More information

Impact Factors: Scientific Assessment by Numbers

Impact Factors: Scientific Assessment by Numbers Impact Factors: Scientific Assessment by Numbers Nico Bruining, Erasmus MC, Impact Factors: Scientific Assessment by Numbers I have no disclosures Scientific Evaluation Parameters Since a couple of years

More information

Chord Classification of an Audio Signal using Artificial Neural Network

Chord Classification of an Audio Signal using Artificial Neural Network Chord Classification of an Audio Signal using Artificial Neural Network Ronesh Shrestha Student, Department of Electrical and Electronic Engineering, Kathmandu University, Dhulikhel, Nepal ---------------------------------------------------------------------***---------------------------------------------------------------------

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

Antony And Cleopatra (Oxford School Shakespeare Series) By William Shakespeare, Roma Gill

Antony And Cleopatra (Oxford School Shakespeare Series) By William Shakespeare, Roma Gill Antony And Cleopatra (Oxford School Shakespeare Series) By William Shakespeare, Roma Gill If you are looking for a ebook Antony and Cleopatra (Oxford School Shakespeare Series) by William Shakespeare,

More information

Singing from the same sheet: A new approach to measuring tune similarity and its legal implications

Singing from the same sheet: A new approach to measuring tune similarity and its legal implications Singing from the same sheet: A new approach to measuring tune similarity and its legal implications Daniel Müllensiefen Department of Psychology Goldsmiths University of London Robert J.S. Cason School

More information

Should author self- citations be excluded from citation- based research evaluation? Perspective from in- text citation functions

Should author self- citations be excluded from citation- based research evaluation? Perspective from in- text citation functions 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 Should author self- citations be excluded from citation- based research evaluation? Perspective

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

Personalized TV Recommendation with Mixture Probabilistic Matrix Factorization

Personalized TV Recommendation with Mixture Probabilistic Matrix Factorization Personalized TV Recommendation with Mixture Probabilistic Matrix Factorization Huayu Li, Hengshu Zhu #, Yong Ge, Yanjie Fu +,Yuan Ge Computer Science Department, UNC Charlotte # Baidu Research-Big Data

More information

The Tragedy of Macbeth

The Tragedy of Macbeth The Tragedy of Macbeth Pronouns How does Shakespeare use Pronouns in Macbeth compared to the rest of the Tragedies. If you compare how Shakespeare uses pronouns in the Tragedies with how he uses them throughout

More information

Institute of Southern Punjab, Multan

Institute of Southern Punjab, Multan Institute of Southern Punjab, Multan Network Security Substitution Techniques Lecture#4 Mazhar Hussain E-mail: mazhar.hussain@isp.edu.pk Lecture 4: Substitution Techniques Polybius Cipher Playfair Cipher

More information

Absolute Relevance? Ranking in the Scholarly Domain. Tamar Sadeh, PhD CNI, Baltimore, MD April 2012

Absolute Relevance? Ranking in the Scholarly Domain. Tamar Sadeh, PhD CNI, Baltimore, MD April 2012 Absolute Relevance? Ranking in the Scholarly Domain Tamar Sadeh, PhD CNI, Baltimore, MD April 2012 Copyright Statement All of the information and material inclusive of text, images, logos, product names

More information

Supplementary Note. Supplementary Table 1. Coverage in patent families with a granted. all patent. Nature Biotechnology: doi: /nbt.

Supplementary Note. Supplementary Table 1. Coverage in patent families with a granted. all patent. Nature Biotechnology: doi: /nbt. Supplementary Note Of the 100 million patent documents residing in The Lens, there are 7.6 million patent documents that contain non patent literature citations as strings of free text. These strings have

More information

Assigning and Visualizing Music Genres by Web-based Co-Occurrence Analysis

Assigning and Visualizing Music Genres by Web-based Co-Occurrence Analysis Assigning and Visualizing Music Genres by Web-based Co-Occurrence Analysis Markus Schedl 1, Tim Pohle 1, Peter Knees 1, Gerhard Widmer 1,2 1 Department of Computational Perception, Johannes Kepler University,

More information

COMPLETE WORKS: TABLE TOP SHAKESPEARE EDUCATION PACK

COMPLETE WORKS: TABLE TOP SHAKESPEARE EDUCATION PACK COMPLETE WORKS: TABLE TOP SHAKESPEARE EDUCATION PACK ABOUT FORCED ENTERTAINMENT Who are Forced Entertainment? Forced Entertainment are (above - left to right): Claire Marshall (performer), Terry O Connor

More information

Sequential Association Rules in Atonal Music

Sequential Association Rules in Atonal Music Sequential Association Rules in Atonal Music Aline Honingh, Tillman Weyde and Darrell Conklin Music Informatics research group Department of Computing City University London Abstract. This paper describes

More information

UWaterloo at SemEval-2017 Task 7: Locating the Pun Using Syntactic Characteristics and Corpus-based Metrics

UWaterloo at SemEval-2017 Task 7: Locating the Pun Using Syntactic Characteristics and Corpus-based Metrics UWaterloo at SemEval-2017 Task 7: Locating the Pun Using Syntactic Characteristics and Corpus-based Metrics Olga Vechtomova University of Waterloo Waterloo, ON, Canada ovechtom@uwaterloo.ca Abstract The

More information

DIFFERENTIATE SOMETHING AT THE VERY BEGINNING THE COURSE I'LL ADD YOU QUESTIONS USING THEM. BUT PARTICULAR QUESTIONS AS YOU'LL SEE

DIFFERENTIATE SOMETHING AT THE VERY BEGINNING THE COURSE I'LL ADD YOU QUESTIONS USING THEM. BUT PARTICULAR QUESTIONS AS YOU'LL SEE 1 MATH 16A LECTURE. OCTOBER 28, 2008. PROFESSOR: SO LET ME START WITH SOMETHING I'M SURE YOU ALL WANT TO HEAR ABOUT WHICH IS THE MIDTERM. THE NEXT MIDTERM. IT'S COMING UP, NOT THIS WEEK BUT THE NEXT WEEK.

More information

TERRESTRIAL broadcasting of digital television (DTV)

TERRESTRIAL broadcasting of digital television (DTV) IEEE TRANSACTIONS ON BROADCASTING, VOL 51, NO 1, MARCH 2005 133 Fast Initialization of Equalizers for VSB-Based DTV Transceivers in Multipath Channel Jong-Moon Kim and Yong-Hwan Lee Abstract This paper

More information

R&D White Paper WHP 085. The Rel : a perception-based measure of resolution. Research & Development BRITISH BROADCASTING CORPORATION.

R&D White Paper WHP 085. The Rel : a perception-based measure of resolution. Research & Development BRITISH BROADCASTING CORPORATION. R&D White Paper WHP 085 April 00 The Rel : a perception-based measure of resolution A. Roberts Research & Development BRITISH BROADCASTING CORPORATION BBC Research & Development White Paper WHP 085 The

More information

Sequential Association Rules in Atonal Music

Sequential Association Rules in Atonal Music Sequential Association Rules in Atonal Music Aline Honingh, Tillman Weyde, and Darrell Conklin Music Informatics research group Department of Computing City University London Abstract. This paper describes

More information

Sherlock Holmes and the adventures of the dancing men

Sherlock Holmes and the adventures of the dancing men Sherlock Holmes and the adventures of the dancing men Kseniya Garaschuk May 30, 2013 1 Overview Cryptography (from Greek for hidden, secret ) is the practice and study of hiding information. A cipher is

More information

EE391 Special Report (Spring 2005) Automatic Chord Recognition Using A Summary Autocorrelation Function

EE391 Special Report (Spring 2005) Automatic Chord Recognition Using A Summary Autocorrelation Function EE391 Special Report (Spring 25) Automatic Chord Recognition Using A Summary Autocorrelation Function Advisor: Professor Julius Smith Kyogu Lee Center for Computer Research in Music and Acoustics (CCRMA)

More information

Retrieval of textual song lyrics from sung inputs

Retrieval of textual song lyrics from sung inputs INTERSPEECH 2016 September 8 12, 2016, San Francisco, USA Retrieval of textual song lyrics from sung inputs Anna M. Kruspe Fraunhofer IDMT, Ilmenau, Germany kpe@idmt.fraunhofer.de Abstract Retrieving the

More information

CSE 166: Image Processing. Overview. Representing an image. What is an image? History. What is image processing? Today. Image Processing CSE 166

CSE 166: Image Processing. Overview. Representing an image. What is an image? History. What is image processing? Today. Image Processing CSE 166 CSE 166: Image Processing Overview Image Processing CSE 166 Today Course overview Logistics Some mathematics MATLAB Lectures will be boardwork and slides Take written notes or take pictures of the board

More information

Comparative Analysis of Stein s. and Euclid s Algorithm with BIST for GCD Computations. 1. Introduction

Comparative Analysis of Stein s. and Euclid s Algorithm with BIST for GCD Computations. 1. Introduction IJCSN International Journal of Computer Science and Network, Vol 2, Issue 1, 2013 97 Comparative Analysis of Stein s and Euclid s Algorithm with BIST for GCD Computations 1 Sachin D.Kohale, 2 Ratnaprabha

More information

Signal Processing. Case Study - 3. It s Too Loud. Hardware. Sound Levels

Signal Processing. Case Study - 3. It s Too Loud. Hardware. Sound Levels Case Study - 3 Signal Processing Lisa Simpson: Would you guys turn that down! Homer Simpson: Sweetie, if we didn't turn it down for the cops, what chance do you have? "The Simpsons" Little Big Mom (2000)

More information

100 Statistical Tests In R By N.D Lewis READ ONLINE

100 Statistical Tests In R By N.D Lewis READ ONLINE 100 Statistical Tests In R By N.D Lewis READ ONLINE If you are looking for the book 100 Statistical Tests in R by N.D Lewis in pdf form, then you've come to the right website. We furnish the full edition

More information

Introduction to Your Teacher s Pack!

Introduction to Your Teacher s Pack! Who Shot Shakespeare ACADEMIC YEAR 2013/14 AN INTERACTING PUBLICATION LAUGH WHILE YOU LEARN Shakespeare's GlobeTheatre, Bankside, Southwark, London. Introduction to Your Teacher s Pack! Dear Teachers.

More information

The reduction in the number of flip-flops in a sequential circuit is referred to as the state-reduction problem.

The reduction in the number of flip-flops in a sequential circuit is referred to as the state-reduction problem. State Reduction The reduction in the number of flip-flops in a sequential circuit is referred to as the state-reduction problem. State-reduction algorithms are concerned with procedures for reducing the

More information

Improving MeSH Classification of Biomedical Articles using Citation Contexts

Improving MeSH Classification of Biomedical Articles using Citation Contexts Improving MeSH Classification of Biomedical Articles using Citation Contexts Bader Aljaber a, David Martinez a,b,, Nicola Stokes c, James Bailey a,b a Department of Computer Science and Software Engineering,

More information

Linear mixed models and when implied assumptions not appropriate

Linear mixed models and when implied assumptions not appropriate Mixed Models Lecture Notes By Dr. Hanford page 94 Generalized Linear Mixed Models (GLMM) GLMMs are based on GLM, extended to include random effects, random coefficients and covariance patterns. GLMMs are

More information

Evaluation Tools. Journal Impact Factor. Journal Ranking. Citations. H-index. Library Service Section Elyachar Central Library.

Evaluation Tools. Journal Impact Factor. Journal Ranking. Citations. H-index. Library Service Section Elyachar Central Library. Evaluation Tools Journal Impact Factor Journal Ranking Citations H-index Page 1 of 12 Journal Impact Factor Journal Citation Reports is a comprehensive resource that allows you to evaluate and compare

More information

Julius Caesar (Arkangel Shakespeare Collection) By William Shakespeare

Julius Caesar (Arkangel Shakespeare Collection) By William Shakespeare Julius Caesar (Arkangel Shakespeare Collection) By William Shakespeare All tickets will be held for collection at the audience reaction to The RSC's Julius Caesar. What did people think of the Royal Shakespeare

More information

CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division

CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division CPSC 121: Models of Computation Lab #5: Flip-Flops and Frequency Division Objectives In this lab, you will see two types of sequential circuits: latches and flip-flops. Latches and flip-flops can be used

More information

Music Information Retrieval Using Audio Input

Music Information Retrieval Using Audio Input Music Information Retrieval Using Audio Input Lloyd A. Smith, Rodger J. McNab and Ian H. Witten Department of Computer Science University of Waikato Private Bag 35 Hamilton, New Zealand {las, rjmcnab,

More information

Objective Video Quality Assessment of Direct Recording and Datavideo HDR-40 Recording System

Objective Video Quality Assessment of Direct Recording and Datavideo HDR-40 Recording System JAICT, Journal of Applied Information and Communication Technologies Vol., No., 206 Objective Video Quality Assessment of Direct Recording and Datavideo HDR-40 Recording System Nofia Andreana, Arif Nursyahid

More information

Julius Caesar (Arkangel Shakespeare Collection) By William Shakespeare READ ONLINE

Julius Caesar (Arkangel Shakespeare Collection) By William Shakespeare READ ONLINE Julius Caesar (Arkangel Shakespeare Collection) By William Shakespeare READ ONLINE If you are searching for a ebook by William Shakespeare Julius Caesar (Arkangel Shakespeare Collection) in pdf format,

More information

COMP 9519: Tutorial 1

COMP 9519: Tutorial 1 COMP 9519: Tutorial 1 1. An RGB image is converted to YUV 4:2:2 format. The YUV 4:2:2 version of the image is of lower quality than the RGB version of the image. Is this statement TRUE or FALSE? Give reasons

More information

Logic Design ( Part 3) Sequential Logic- Finite State Machines (Chapter 3)

Logic Design ( Part 3) Sequential Logic- Finite State Machines (Chapter 3) Logic esign ( Part ) Sequential Logic- Finite State Machines (Chapter ) Based on slides McGraw-Hill Additional material 00/00/006 Lewis/Martin Additional material 008 Roth Additional material 00 Taylor

More information

35 Faculty of Engineering, Chulalongkorn University

35 Faculty of Engineering, Chulalongkorn University SCImago Journal Ranking (SJR) accounts for both the number of citations received by a journal and the importance of the journals where such citations come from. SJR computation uses an algorithm similar

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

Music Information Retrieval Community

Music Information Retrieval Community Music Information Retrieval Community What: Developing systems that retrieve music When: Late 1990 s to Present Where: ISMIR - conference started in 2000 Why: lots of digital music, lots of music lovers,

More information

Identifying Related Documents For Research Paper Recommender By CPA and COA

Identifying Related Documents For Research Paper Recommender By CPA and COA Preprint of: Bela Gipp and Jöran Beel. Identifying Related uments For Research Paper Recommender By CPA And COA. In S. I. Ao, C. Douglas, W. S. Grundfest, and J. Burgstone, editors, International Conference

More information

Research Article. ISSN (Print) *Corresponding author Shireen Fathima

Research Article. ISSN (Print) *Corresponding author Shireen Fathima Scholars Journal of Engineering and Technology (SJET) Sch. J. Eng. Tech., 2014; 2(4C):613-620 Scholars Academic and Scientific Publisher (An International Publisher for Academic and Scientific Resources)

More information

Citation Analysis. Presented by: Rama R Ramakrishnan Librarian (Instructional Services) Engineering Librarian (Aerospace & Mechanical)

Citation Analysis. Presented by: Rama R Ramakrishnan Librarian (Instructional Services) Engineering Librarian (Aerospace & Mechanical) Citation Analysis Presented by: Rama R Ramakrishnan Librarian (Instructional Services) Engineering Librarian (Aerospace & Mechanical) Learning outcomes At the end of this session: You will be able to navigate

More information

William Shakespeare ( ) England s genius

William Shakespeare ( ) England s genius William Shakespeare (1564-1616) England s genius 1. Why do we study Shakespeare? his plays are the greatest literary texts of all times; they express a profound knowledge of human behaviour; they transmit

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

JULIUS CAESAR. Shakespeare. Cambridge School. Edited by Rob Smith and Vicki Wienand

JULIUS CAESAR. Shakespeare. Cambridge School. Edited by Rob Smith and Vicki Wienand Cambridge School Shakespeare JULIUS CAESAR Series editors: Richard Andrews and Vicki Wienand Founding editor: Rex Gibson University Printing House, Cambridge CB2 8BS, United Kingdom Cambridge University

More information

DOWNLOAD OR READ : SHAKESPERES JULIUS CAESAR PDF EBOOK EPUB MOBI

DOWNLOAD OR READ : SHAKESPERES JULIUS CAESAR PDF EBOOK EPUB MOBI DOWNLOAD OR READ : SHAKESPERES JULIUS CAESAR PDF EBOOK EPUB MOBI Page 1 Page 2 shakesperes julius caesar shakesperes julius caesar pdf shakesperes julius caesar Did not great Julius bleed for justice'

More information

Note: Please use the actual date you accessed this material in your citation.

Note: Please use the actual date you accessed this material in your citation. MIT OpenCourseWare http://ocw.mit.edu 18.06 Linear Algebra, Spring 2005 Please use the following citation format: Gilbert Strang, 18.06 Linear Algebra, Spring 2005. (Massachusetts Institute of Technology:

More information

FPGA IMPLEMENTATION AN ALGORITHM TO ESTIMATE THE PROXIMITY OF A MOVING TARGET

FPGA IMPLEMENTATION AN ALGORITHM TO ESTIMATE THE PROXIMITY OF A MOVING TARGET International Journal of VLSI Design, 2(2), 20, pp. 39-46 FPGA IMPLEMENTATION AN ALGORITHM TO ESTIMATE THE PROXIMITY OF A MOVING TARGET Ramya Prasanthi Kota, Nagaraja Kumar Pateti2, & Sneha Ghanate3,2

More information

Application of cepstrum prewhitening on non-stationary signals

Application of cepstrum prewhitening on non-stationary signals Noname manuscript No. (will be inserted by the editor) Application of cepstrum prewhitening on non-stationary signals L. Barbini 1, M. Eltabach 2, J.L. du Bois 1 Received: date / Accepted: date Abstract

More information

System Identification

System Identification System Identification Arun K. Tangirala Department of Chemical Engineering IIT Madras July 26, 2013 Module 9 Lecture 2 Arun K. Tangirala System Identification July 26, 2013 16 Contents of Lecture 2 In

More information

An Efficient Reduction of Area in Multistandard Transform Core

An Efficient Reduction of Area in Multistandard Transform Core An Efficient Reduction of Area in Multistandard Transform Core A. Shanmuga Priya 1, Dr. T. K. Shanthi 2 1 PG scholar, Applied Electronics, Department of ECE, 2 Assosiate Professor, Department of ECE Thanthai

More information

Sequential Logic Notes

Sequential Logic Notes Sequential Logic Notes Andrew H. Fagg igital logic circuits composed of components such as AN, OR and NOT gates and that do not contain loops are what we refer to as stateless. In other words, the output

More information

The Tempest (Dover Thrift Editions) By William Shakespeare

The Tempest (Dover Thrift Editions) By William Shakespeare The Tempest (Dover Thrift Editions) By William Shakespeare If you are looking for the ebook by William Shakespeare The Tempest (Dover Thrift Editions) in pdf form, in that case you come on to correct website.

More information