Text is everywhere We use documents as primary information artifact - - PowerPoint PPT Presentation

text is everywhere
SMART_READER_LITE
LIVE PREVIEW

Text is everywhere We use documents as primary information artifact - - PowerPoint PPT Presentation

CSE 6242 / CX 4242 Text Analytics (Text Mining) Concepts and Algorithms Duen Horng (Polo) Chau Georgia Tech Some lectures are partly based on materials by Professors Guy Lebanon, Jeffrey Heer, John Stasko, Christos Faloutsos, Le Song


slide-1
SLIDE 1

Text Analytics (Text Mining)

Concepts and Algorithms

CSE 6242 / CX 4242 Duen Horng (Polo) Chau
 Georgia Tech

Some lectures are partly based on materials by 
 Professors Guy Lebanon, Jeffrey Heer, John Stasko, Christos Faloutsos, Le Song

slide-2
SLIDE 2

Text is everywhere

We use documents as primary information artifact in our lives Our access to documents has grown tremendously thanks to the Internet

  • WWW: webpages, Twitter, Facebook, Wikipedia, Blogs, ...
  • Digital libraries: Google books, ACM, IEEE, ...
  • Lyrics, closed caption... (youtube)
  • Police case reports
  • legislation (law)
  • reviews (products, rotten tomatoes)
  • medical reports (EHR - electronic health records)
  • job descriptions

2

slide-3
SLIDE 3

Big (Research) Questions

... in understanding and gathering information from text and document collections

  • establish authorship, authenticity; plagiarism detection
  • finding patterns in human genome
  • classification of genres for narratives (e.g., books, articles)
  • tone classification; sentiment analysis (online reviews, twitter, social media)
  • code: syntax analysis (e.g., find common bugs from students’ answers)

3

slide-4
SLIDE 4

Outline

  • Storage (full text storage and full text search in SQLite, MySQL)
  • Preprocessing (e.g., stemming, remove stop words)
  • Document representation (most common: bag-of-words model)
  • Word importance (e.g., word count, TF-IDF)
  • Word disambiguation/entity resolution
  • Document importance (e.g., PageRank)
  • Document similarity (e.g., cosine similarity, Apolo/Belief Propagation,

etc.)

  • Retrieval (Latent Semantic Indexing)

To learn more: 


  • Prof. Jacob Eisenstein’s CS 4650/7650 Natural Language Processing

4

slide-5
SLIDE 5

Stemming

Reduce words to their stems (or base forms) Words: compute, computing, computer, ... Stem: comput Several classes of algorithms to do this:

  • Stripping suffixes, lookup-based, etc.

5 http://en.wikipedia.org/wiki/Stemming Stop words: http://en.wikipedia.org/wiki/Stop_words

slide-6
SLIDE 6

Bags-of-words model

Represent each document as a bag of words, ignoring words’ ordering. Why?

  • Unstructured text -> a vector of numbers
  • e.g., docs: “I like visualization”, “I like data”.
  • “I”: 1,
  • “like”: 2,
  • “data”: 3,
  • “visualization”: 4
  • “I like visualization” -> [1, 1, 0, 1]
  • “I like data” -> [1, 1, 1, 0]

6

slide-7
SLIDE 7

TF-IDF 


(a word’s importance score in a document, among N documents)

When to use it? Everywhere you use “word count”, you may use TF-IDF.

  • TF: term frequency 


= #appearance a document

  • IDF: inverse document frequency 


= log( N / #document containing that term)

  • Score = TF * IDF


(higher score -> more important)

7

Example: http://en.wikipedia.org/wiki/Tf–idf#Example_of_tf.E2.80.93idf

slide-8
SLIDE 8

Vector Space Model and Clustering

  • keyword queries (vs Boolean)
  • each document: -> vector (HOW?)
  • each query: -> vector
  • search for ‘similar’ vectors
slide-9
SLIDE 9
  • main idea:

document ...data... aaron zoo data V (= vocabulary size) ‘indexing’

Vector Space Model and Clustering

slide-10
SLIDE 10

Then, group nearby vectors together

  • Q1: cluster search?
  • Q2: cluster generation?

Two significant contributions

  • ranked output
  • relevance feedback

Vector Space Model and Clustering

slide-11
SLIDE 11
  • cluster search: visit the (k) closest

superclusters; continue recursively

CS TRs MD TRs

Vector Space Model and Clustering

slide-12
SLIDE 12
  • ranked output: easy!

CS TRs MD TRs

Vector Space Model and Clustering

slide-13
SLIDE 13
  • relevance feedback (brilliant idea) [Roccio’73]

CS TRs MD TRs

Vector Space Model and Clustering

slide-14
SLIDE 14
  • relevance feedback (brilliant idea) [Roccio’73]
  • How?

CS TRs MD TRs

Vector Space Model and Clustering

slide-15
SLIDE 15
  • How? A: by adding the ‘good’ vectors and

subtracting the ‘bad’ ones

CS TRs MD TRs

Vector Space Model and Clustering

slide-16
SLIDE 16

Outline - detailed

  • main idea
  • cluster search
  • cluster generation
  • evaluation
slide-17
SLIDE 17

Cluster generation

  • Problem:

– given N points in V dimensions, –group them

slide-18
SLIDE 18

Cluster generation

  • Problem:

– given N points in V dimensions, –group them

slide-19
SLIDE 19

Cluster generation

We need

  • Q1: document-to-document similarity
  • Q2: document-to-cluster similarity
slide-20
SLIDE 20

Cluster generation

Q1: document-to-document similarity (recall: ‘bag of words’ representation)

  • D1: {‘data’, ‘retrieval’, ‘system’}
  • D2: {‘lung’, ‘pulmonary’, ‘system’}
  • distance/similarity functions?
slide-21
SLIDE 21

Cluster generation

A1: # of words in common A2: ........ normalized by the vocabulary sizes A3: .... etc About the same performance - prevailing one: cosine similarity

slide-22
SLIDE 22

cosine similarity: similarity(D1, D2) = cos(θ) = sum(v1,i * v2,i) / [len(v1) * len(v2)]

Cluster generation

θ D1 D2

slide-23
SLIDE 23

Cluster generation

cosine similarity - observations:

  • related to the Euclidean distance
  • weights vi,j : according to tf/idf

θ D1 D2

slide-24
SLIDE 24

Cluster generation

tf (‘term frequency’)

high, if the term appears very often in this document.

idf (‘inverse document frequency’)

penalizes ‘common’ words, that appear in almost every document

slide-25
SLIDE 25

Cluster generation

We need

  • Q1: document-to-document similarity
  • Q2: document-to-cluster similarity

?

slide-26
SLIDE 26

Cluster generation

  • A1: min distance (‘single-link’)
  • A2: max distance (‘all-link’)
  • A3: avg distance (gives same cluster ranking

as A4, but different values)

  • A4: distance to centroid

?

slide-27
SLIDE 27

Cluster generation

  • A1: min distance (‘single-link’)

–leads to elongated clusters

  • A2: max distance (‘all-link’)

–many, small, tight clusters

  • A3: avg distance

–in between the above

  • A4: distance to centroid

–fast to compute

slide-28
SLIDE 28

Cluster generation

We have

  • document-to-document similarity
  • document-to-cluster similarity

Q: How to group documents into ‘natural’ clusters

slide-29
SLIDE 29

Cluster generation

A: *many-many* algorithms - in two groups [VanRijsbergen]:

  • theoretically sound (O(N^2))

–independent of the insertion order

  • iterative (O(N), O(N log(N))
slide-30
SLIDE 30

Cluster generation - ‘sound’ methods

  • Approach#1: dendrograms - create a hierarchy

(bottom up or top-down) - choose a cut-off (how?) and cut

cat tiger horse cow 0.1 0.3 0.8

slide-31
SLIDE 31

Cluster generation - ‘sound’ methods

  • Approach#2: min. some statistical criterion

(eg., sum of squares from cluster centers)

–like ‘k-means’ –but how to decide ‘k’?

slide-32
SLIDE 32

Cluster generation - ‘sound’ methods

  • Approach#3: Graph theoretic [Zahn]:

–build MST; –delete edges longer than 3* std of the local average

slide-33
SLIDE 33

Cluster generation - ‘sound’ methods

  • Result:
  • why ‘3’?
  • variations
  • Complexity?
slide-34
SLIDE 34

Cluster generation - ‘iterative’ methods

General outline:

  • Choose ‘seeds’ (how?)
  • assign each vector to its closest seed (possibly

adjusting cluster centroid)

  • possibly, re-assign some vectors to improve

clusters Fast and practical, but ‘unpredictable’

slide-35
SLIDE 35

Cluster generation

  • ne way to estimate # of clusters k: the ‘cover

coefficient’ [Can+] ~ SVD

slide-36
SLIDE 36

LSI - Detailed outline

  • LSI

–problem definition –main idea –experiments

slide-37
SLIDE 37

Information Filtering + LSI

  • [Foltz+,’92] Goal:

– users specify interests (= keywords) –system alerts them, on suitable news-documents

  • Major contribution: 


LSI = Latent Semantic Indexing

–latent (‘hidden’) concepts

slide-38
SLIDE 38

Information Filtering + LSI

Main idea

  • map each document into some ‘concepts’
  • map each term into some ‘concepts’

‘Concept’:~ a set of terms, with weights, 
 e.g. DBMS_concept:
 “data” (0.8), 
 “system” (0.5), 
 “retrieval” (0.6)

slide-39
SLIDE 39

Information Filtering + LSI

Pictorially: term-document matrix (BEFORE)

slide-40
SLIDE 40

Information Filtering + LSI

Pictorially: concept-document matrix and...

slide-41
SLIDE 41

Information Filtering + LSI

... and concept-term matrix

slide-42
SLIDE 42

Information Filtering + LSI

Q: How to search, e.g., for ‘system’?

slide-43
SLIDE 43

Information Filtering + LSI

A: find the corresponding concept(s); and the corresponding documents

slide-44
SLIDE 44

Information Filtering + LSI

A: find the corresponding concept(s); and the corresponding documents

slide-45
SLIDE 45

Information Filtering + LSI

Thus it works like an (automatically constructed) thesaurus: we may retrieve documents that DON’T have the term ‘system’, but they contain almost everything else (‘data’, ‘retrieval’)

slide-46
SLIDE 46

LSI - Discussion - Conclusions

  • Great idea,

–to derive ‘concepts’ from documents –to build a ‘statistical thesaurus’ automatically –to reduce dimensionality (down to few “concepts”)

  • How exactly SVD works? (Details, next)