90
Fair Use Agreement This agreement covers the use of all slides on this CD-Rom, please read carefully. You may freely use these slides for teaching, if You send me an email telling me the class number/ university in advance. •My name and email address appears on the first slide (if you are using all or most of the slides), or on each slide (if you are just taking a few slides). You may freely use these slides for a conference presentation, if •You send me an email telling me the conference name in advance. •My name appears on each slide you use. •You may not use these slides for tutorials, or in a published work (tech report/ conference paper/ thesis/ journal etc). If you wish to do this, email me first, it is highly likely I will grant you permission. (c) Eamonn Keogh, [email protected]

CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

  • Upload
    others

  • View
    1

  • Download
    0

Embed Size (px)

Citation preview

Page 1: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Fair Use Agreement

This agreement covers the use of all slides on this

CD-Rom, please read carefully.

• You may freely use these slides for teaching, if• You send me an email telling me the class number/ university in advance.

• My name and email address appears on the first slide (if you are using all or most of the slides), or on each

slide (if you are just taking a few slides).

• You may freely use these slides for a conference presentation, if• You send me an email telling me the conference name in advance.

• My name appears on each slide you use.

• You may not use these slides for tutorials, or in a published work (tech report/

conference paper/ thesis/ journal etc). If you wish to do this, email me first, it is

highly likely I will grant you permission.

(c) Eamonn Keogh, [email protected]

Page 2: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Symbolic Representations of Time Series

Eamonn Keogh and Jessica LinComputer Science & Engineering Department

University of California - Riverside

Riverside,CA 92521

[email protected]

Page 3: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Important! Read This!These slides are from an early talk about SAX, some slides

will make little sense out of context, but are provided here to

give a quick intro to the utility of SAX. Read [1] for more

details.

You may use these slides for any teaching purpose, so long as they are

clearly identified as being created by Jessica Lin and Eamonn Keogh.

You may not use the text and images in a paper or tutorial without

express prior permission from Dr. Keogh.

[1] Lin, J., Keogh, E., Lonardi, S. & Chiu, B. (2003). A Symbolic Representation of Time Series, with Implications for Streaming Algorithms. In proceedings of the 8th ACM SIGMOD Workshop on Research Issues in Data Mining and Knowledge Discovery. San Diego, CA. June 13.

Page 4: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Outline of Talk

• Prologue: Background on Time Series Data Mining

• The importance of the right representation

• A new symbolic representation

• motif discovery

• anomaly detection

• visualization

• Appendix: classification, clustering, indexing

Page 5: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

What are Time Series?

0 50 100 150 200 250 300 350 400 450 50023

24

25

26

27

28

29

25.1750

25.2250

25.2500

25.2500

25.2750

25.3250

25.3500

25.3500

25.4000

25.4000

25.3250

25.2250

25.2000

25.1750

..

..24.6250

24.6750

24.6750

24.6250

24.6250

24.6250

24.6750

24.7500

A time series is a collection of observations

made sequentially in time.

Page 6: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Time Series are Ubiquitous! I

People measure things...

• Schwarzeneggers popularity rating.

• Their blood pressure.

• The annual rainfall in New Zealand.

• The value of their Yahoo stock.

• The number of web hits per second.

… and things change over time.

Thus time series occur in virtually every medical, scientific and

businesses domain.

Page 7: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Image data, may best be thought of as time series…

Page 8: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

0 10 20 30 40 50 60 70 80 90

Hand at rest

Hand moving to

shoulder level

Steady

pointing

0 10 20 30 40 50 60 70 80 90

Hand at rest

Hand moving

above holster

Hand moving

down to grasp gun

Hand moving to

shoulder level

Steady

pointing

Video data, may best be thought of as time series…

Point

Gun-Draw

Page 9: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

What do we want to do with the time series data?

Clustering Classification

Query by

ContentRule

Discovery10

⇒s = 0.5

c = 0.3

Motif Discovery

Novelty Detection

Page 10: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

All these problems require similarity matching

Clustering Classification

Query by

ContentRule

Discovery10

⇒s = 0.5

c = 0.3

Motif Discovery

Novelty Detection

Page 11: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Euclidean Distance Metric

Q

C

D(Q,C)( ) ( )∑ −≡

=

n

iii cqCQD

1

2,

Given two time series

Q = q1…qn

and

C = c1…cn

their Euclidean distance is

defined as:

Page 12: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

• Create an approximation of the data, which will fit in main

memory, yet retains the essential features of interest

• Approximately solve the problem at hand in main memory

• Make (hopefully very few) accesses to the original data on disk

to confirm the solution obtained in Step 2, or to modify the

solution so it agrees with the solution we would have obtained on

the original data

The Generic Data Mining Algorithm

But which approximationshould we use?

Page 13: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Time Series Representations

Data Adaptive Non Data Adaptive

SpectralWavelets PiecewiseAggregate

Approximation

Piecewise Polynomial

SymbolicSingularValue

Decomposition

RandomMappings

PiecewiseLinear

Approximation

AdaptivePiecewiseConstant

Approximation

DiscreteFourier

Transform

DiscreteCosine

Transform

Haar Daubechiesdbn n > 1

Coiflets Symlets

Sorted Coefficients

Orthonormal Bi-Orthonormal

Interpolation Regression

Trees

Natural Language

Strings

0 20 40 60 80 100 120 0 20 40 60 80 100 120 0 20 40 60 80 100 120 0 20 40 60 80 1001200 20 40 60 80 100 120 0 20 40 60 80 100120

DFT DWT SVD APCA PAA PLA

0 20 40 60 80 100120

SYM

UUCUCUCD

UU

CU

CU

DD

Page 14: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

• Create an approximation of the data, which will fit in main

memory, yet retains the essential features of interest

• Approximately solve the problem at hand in main memory

• Make (hopefully very few) accesses to the original data on disk

to confirm the solution obtained in Step 2, or to modify the

solution so it agrees with the solution we would have obtained on

the original data

The Generic Data Mining Algorithm (revisited)

This only works if the approximation allows

lower bounding

Page 15: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

∑ = − −−≡M

i iiii svqvsrsr1

2

1 ))((

DLB(Q’,S’)

DLB(Q’,S’)

S

Q

D(Q,S)

( )∑ −≡=

n

iii sq

1

2

D(Q,S)

Exact (Euclidean) distance D(Q,S) Lower bounding distance DLB(Q,S)

Q’

S’

Lower bounding means that for all Q and S, we have…

DLB(Q’,S’) ≤≤≤≤ D(Q,S)

What is lower bounding?

Page 16: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

We can live without “trees”, “random mappings” and “natural

language”, but it would be nice if we could lower bound strings

(symbolic or discrete approximations)…

A lower bounding symbolic approach would allow data miners to…

• Use suffix trees, hashing, markov models etc

• Use text processing and bioinformatic algorithms

Time Series Representations

Data Adaptive Non Data Adaptive

SpectralWavelets PiecewiseAggregate

Approximation

Piecewise Polynomial

SymbolicSingularValue

Decomposition

RandomMappings

PiecewiseLinear

Approximation

AdaptivePiecewiseConstant

Approximation

DiscreteFourier

Transform

DiscreteCosine

Transform

Haar Daubechiesdbn n > 1

Coiflets Symlets

Sorted Coefficients

Orthonormal Bi-Orthonormal

Interpolation Regression

Trees

Natural Language

Strings

Page 17: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

We have created the first

symbolic representation of time

series, that allows…

• Lower bounding of Euclidean distance

• Dimensionality Reduction

• Numerosity Reduction

Page 18: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

We call our representation SAX

Symbolic Aggregate ApproXimation

baabccbc

Page 19: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

How do we obtain SAX?

0 20 40 60 80 100 120

C

C

0

--

0 20 40 60 80 100 120

bb

b

a

c

c

c

a

baabccbc

First convert the time

series to PAA

representation, then

convert the PAA to

symbols

It take linear time

Page 20: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Time series subsequences tend to have a

highly Gaussian distribution

-10 0 10

0.001

0.003

0.01 0.02

0.05

0.10

0.25

0.50

0 .75

0 .90

0 .95

0 .98 0.99

0 .997

0.999

Pro

ba

bili

ty

A normal probability plot of the (cumulative) distribution of

values from subsequences of length 128.

0

--

0 20 40 60 80

bb

a

c

a

Why a Gaussian?

Page 21: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Visual Comparison

A raw time series of length 128 is transformed into the

word “ffffffeeeddcbaabceedcbaaaaacddee.”– We can use more symbols to represent the time series since each symbol

requires fewer bits than real-numbers (float, double)

-3

-2 -1 0 1 2 3

DFT

PLA

Haar

APCA

a b c d e f

Page 22: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

PAA distance

lower-bounds

the Euclidean

Distance

0 20 40 60 80 100 120

-1.5

-1

-0.5

0

0.5

1

1.5

C

Q

0 20 40 60 80 100 120

-1.5

-1

-0.5

0

0.5

1

1.5

C

Q

= baabccbcC

= babcaccaQ

( ) ( )∑ −≡=

n

iii cqCQD

1

2,

Euclidean Distance

( )∑ =−≡

w

i iiw

n cqCQDR1

2),(

( )∑ =≡

w

i iiwn cqdistCQMINDIST

1

2)ˆ,ˆ()ˆ,ˆ(

dist() can be implemented using a

table lookup.

Page 23: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

SAX is just as good as

other representations, or

working on the raw data

for most problems (Slides

shown at the end of this

presentation)

Now let us consider SAX

for two hot problems,

novelty detection and

motif discovery

We will start with novelty

detection…

Page 24: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Novelty Detection

• Fault detection

• Interestingness detection

• Anomaly detection

• Surprisingness detection

Page 25: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

…note that this problem should not be confused with the relatively simple problem of outlier detection. Remember Hawkins famous definition of an outlier...

finding surprising

Thanks Doug, the check is in the mail.

We are not interested in finding individually surprising datapoints, we are interested in finding surprising patterns.

from a different mechanism...

... an outlier is an observation that deviates so much from other observations as to arouse suspicion that it was generated from a different mechanism...

Douglas M. Hawkins

Page 26: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Lots of good folks have worked on this, and closely related problems. It is referred to as the detection of “Aberrant Behavior1”, “Novelties2”, “Anomalies3”, “Faults4”, “Surprises5”, “Deviants6” ,“Temporal Change7”, and “Outliers8”.

1. Brutlag, Kotsakis et. al.2. Daspupta et. al., Borisyuk et. al.3. Whitehead et. al., Decoste4. Yairi et. al.5. Shahabi, Chakrabarti6. Jagadish et. al.7. Blockeel et. al., Fawcett et. al.8. Hawkins.

Page 27: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

et. al.

The blue time series at the top is a normal healthy human electrocardiogram with an artificial “flatline” added. The sequence in red at the bottom indicates how surprisinglocal subsections of the time series are under the measure introduced in Shahabi et. al.

Arrr... what be wrong with current approaches?

Page 28: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Our Solution

Based on the following intuition, a

pattern is surprising if its frequency of

occurrence is greatly different from

that which we expected, given

previous experience…

This is a nice intuition, but useless unless we can

more formally define it, and calculate it efficiently

Page 29: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Note that unlike all previous attempts to solve this problem, our notion surprisingness of a pattern is not tied exclusively to its shape. Instead it depends on the difference between the shape’s expected frequency and its observed frequency.

For example consider the familiar head and shoulderspattern shown below...

would flag such patterns.

The existence of this pattern in a stock market time series should not be consider surprising since they are known to occur (even if only by chance). However, if it occurred ten times this year, as opposed to occurring an average of twice a year in previous years, our measure of surprise will flag the shape as being surprising. Cool eh?

The pattern would also be surprising if its frequency of occurrence is less than expected. Once again our definition would flag such patterns.

Page 30: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Tarzan (R) is a registered

trademark of Edgar Rice

Burroughs, Inc.

We call our algorithm… Tarzan!

some pants?

“Tarzan” is not an acronym. It is a pun on the fact that the heart of the algorithm relies comparing two suffix trees, “tree to tree”!

Homer, I hate to be a fuddy-duddy, but could you put on some pants?

Page 31: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Definition 1: A time series pattern P, extracted from database X is surprising relative to a database R, if the probability of its occurrence is greatly different to that expected by chance, assuming that R and X are created by the same underlying process.

We begin by defining some terms… Professor Frink?

Page 32: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Definition 1: A time series pattern P, extracted from database X is surprising relative to a database R, if the probability of occurrence is greatly different to that expected by chance, assuming that R and X are created by the same underlying process.

But you can never know the probability of a pattern you have never seen!

And probability isn’t even defined for real valued time series!

Page 33: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

We need to discretize the time series

into symbolic strings… SAX!!

aaabaabcbabccb

Once we have done this, we can

use Markov models to calculate

the probability of any pattern,

including ones we have never

seen before

Page 34: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

principalskinner

If x = principalskinner

Σ is

{a,c,e,i,k,l,n,p,r,s}

|x| is 16

skin is a substring of x

prin is a prefix of x

ner is a suffix of x

If y = in, then fx(y) = 2

If y = pal, then fx(y) = 1

principalskinner

Page 35: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Can we do all this in linear space

and time?

Yes! Some very clever

modifications of

suffix trees (Mostly

due to Stefano

Lonardi) let us do this

in linear space.

An individual pattern

can be tested in

constant time!

Page 36: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

We would like to demonstrate two

features of our proposed approach

• Sensitivity (High True Positive Rate)

The algorithm can find truly surprising

patterns in a time series.

• Selectivity (Low False Positive Rate)

The algorithm will not find spurious

“surprising” patterns in a time series

Experimental EvaluationSensitive

and Selective,

just like me

Page 37: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

0 200 400 600 800 1000 1200 1400 1600

200 400 600 800 1000 1200 1400 16000

Training data

Test data

(subset)

Tarzan’s level of

surprise

Experiment 1: Shock ECG

Page 38: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Experiment 2: Video (Part 1)

0 2000 4000 6000 8000 10000 12000

0 2000 4000 6000 8000 10000 12000

0 2000 4000 6000 8000 10000 12000

Training data

Test data

(subset)

Tarzan’s level of

surprise

We zoom in on this section in the next slide

Page 39: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Experiment 2: Video (Part 2)

0 100 200 300 400 500 600 700100

150

200

250

300

350

400

Normal sequence

Normal sequenceActor

misses holster

Briefly swings gun at target, but does not aim

Laughing and flailing hand

Page 40: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

We consider a dataset that contains

the power demand for a Dutch

research facility for the entire year

of 1997. The data is sampled over 15 minute

averages, and thus contains 35,040 points.

Demand for Power?

Excellent!

0 200 400 600 800 1000 1200 1400 1600 1800 2000500

1000

1500

2000

2500

The first 3 weeks of the power demand dataset. Note the repeating pattern of a strong peak for each of the five

weekdays, followed by relatively quite weekends

Experiment 3: Power Demand (Part 1)

Page 41: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Tarzan TSA Tree IMM

We used from Monday January 6th to Sunday

March 23rd as reference data. This time

period is devoid of national holidays. We

tested on the remainder of the year.

We will just show the 3 most surprising

subsequences found by each algorithm. For

each of the 3 approaches we show the entire

week (beginning Monday) in which the 3

largest values of surprise fell.

Both TSA-tree and IMM returned sequences

that appear to be normal workweeks, however

Tarzan returned 3 sequences that correspond

to the weeks that contain national holidays in

the Netherlands. In particular, from top to

bottom, the week spanning both December

25th and 26th and the weeks containing

Wednesday April 30th (Koninginnedag,

“Queen's Day”) and May 19th (Whit

Monday).

Mmm.. anomalous..

Experiment 3: Power Demand (Part 2)

Page 42: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

NASA recently said “TARZAN holds great promise for the future*”.

There is now a journal version of TARZAN (under review), if you would like a copy, just ask.

In the meantime, let us consider motif discovery…

* Isaac, D. and Christopher Lynnes, 2003. Automated Data Quality Assessment in the Intelligent

Archive, White Paper prepared for the Intelligent Data Understanding program.

Page 43: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

SAX allows Motif

Discovery!

Winding Dataset( The angular speed of reel 2 )

0 500 1000 150 0 2000 2500

Informally, motifs are reoccurring patterns…

Page 44: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Motif Discovery

W inding Dataset (T he angular speed of reel 2)

0 500 1000 1500 2000 2500

0 20 40 60 80 100 120 140 0 20 40 60 80 100 120 140 0 20 40 60 80 100 120 140

A B C

A B C

To find these 3 motifs would require about

6,250,000 calls to the Euclidean distance function.

Page 45: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

· Mining association rules in time series requires the discovery of motifs.

These are referred to as primitive shapes and frequent patterns.

· Several time series classification algorithms work by constructing typical

prototypes of each class. These prototypes may be considered motifs.

· Many time series anomaly/interestingness detection algorithms essentially

consist of modeling normal behavior with a set of typical shapes (which we see

as motifs), and detecting future patterns that are dissimilar to all typical shapes.

· In robotics, Oates et al., have introduced a method to allow an autonomous

agent to generalize from a set of qualitatively different experiences gleaned

from sensors. We see these “experiences” as motifs.

· In medical data mining, Caraca-Valente and Lopez-Chavarrias have

introduced a method for characterizing a physiotherapy patient’s recovery

based of the discovery of similar patterns. Once again, we see these “similar

patterns” as motifs.

• Animation and video capture… (Tanaka and Uehara, Zordan and Celly)

Why Find Motifs?

Page 46: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Definition 1. Match: Given a positive real number R (called range) and a time series T containing a

subsequence C beginning at position p and a subsequence M beginning at q, if D(C, M) ≤ R, then M is

called a matching subsequence of C.

Definition 2. Trivial Match: Given a time series T, containing a subsequence C beginning at position

p and a matching subsequence M beginning at q, we say that M is a trivial match to C if either p = q

or there does not exist a subsequence M’ beginning at q’ such that D(C, M’) > R, and either q < q’< p

or p < q’< q.

Definition 3. K-Motif(n,R): Given a time series T, a subsequence length n and a range R, the most

significant motif in T (hereafter called the 1-Motif(n,R)) is the subsequence C1 that has highest count

of non-trivial matches (ties are broken by choosing the motif whose matches have the lower

variance). The Kth most significant motif in T (hereafter called the K-Motif(n,R) ) is the subsequence

CK that has the highest count of non-trivial matches, and satisfies D(CK, Ci) > 2R, for all 1 ≤ i < K.

0 100 200 3 00 400 500 600 700 800 900 100 0

T

Space Shuttle STS - 57 Telemetry( Inertial Sensor )

Trivial

Matches

C

Page 47: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

OK, we can define motifs, but

how do we find them?

The obvious brute force search algorithm is just too slow…

Our algorithm is based on a hot idea from bioinformatics,

random projection* and the fact that SAX allows use to

lower bound discrete representations of time series.

* J Buhler and M Tompa. Finding motifs using random projections. In

RECOMB'01. 2001.

Page 48: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

a

b

::::::::a

::::b

c

c

::::::::c

::::c

b

a

::::::::c

::::c

a

b

::::::::a

::::c

1

2

::

58

:985

0 500 1000

a c b a

T ( m= 1000)

a = 3 {a,b,c}

n = 16

w = 4

S^

C1

C1^

Assume that we have a

time series T of length

1,000, and a motif of

length 16, which occurs

twice, at time T1 and

time T58.

A simple worked example of our motif discovery algorithm

The next 4 slides

Page 49: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

a

b

:::: :::: a

:::: b

1

c

c

:::: :::: c

:::: c

2

b

a

:::: :::: c

:::: c

3

a

b

:::: :::: a

:::: c

4

1

2

::

58

:985

457

:

1 58

2 985

1 2 :::: 58 :::: 985

1

2

::::

::::

58

985

1

1

A mask {1,2} was randomly chosen,

so the values in columns {1,2} were

used to project matrix into buckets.

Collisions are recorded by

incrementing the appropriate

location in the collision matrix

Page 50: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

A mask {2,4} was randomly chosen,

so the values in columns {2,4} were

used to project matrix into buckets.

Once again, collisions are

recorded by incrementing the

appropriate location in the

collision matrix

1 2 :::: 58 :::: 985

1

2

::::

::::

58

985

2

1

a

b

:::: :::: a

:::: b

1

c

c

:::: :::: c

:::: c

2

b

a

:::: :::: c

:::: c

3

a

b

:::: :::: a

:::: c

4

1

2

::

58

:985

2

:

1 58

985

Page 51: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

1 2 :::: 58 :::: 985

1

2

::::

::::

58

985

27

1

0

1 1 E( , , , , ) 1-

2

t i w id

i

k wi ak a w d t

iw a a

=

− =

We can calculate the expected values in the

matrix, assuming there are NO patterns…

3 2

1

0

2

2 1

1

3

2

2 1

3Suppose

E(k,a,w,d,t) = 2

Page 52: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

0 200 400 600 800 1000 1200

0 20 40 60 80 100 120

A

B0 20 40 60 80 100 120

C

D

A Simple Experiment

Lets imbed two motifs into a random walk time

series, and see if we can recover them

Page 53: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

A

C

B D

Planted Motifs

Page 54: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

0 20 40 60 80 100 120

0 20 40 60 80 100 120

“Real” Motifs

Page 55: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Some Examples of Real Motifs

0 500 1000 1500 2000

Motor 1 (DC Current)

2500

3500

4500

5500

6500

Astrophysics (Photon Count)

Page 56: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

How Fast can we find Motifs?

Brute Force

TS-P

0

2k

4k

6k

8k

10k

1000 2000 3000 4000 5000

Seconds

Length of Time Series

Page 57: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

TGGCCGTGCTAGGCCCCACCCCTACCTTGCA

GTCCCCGCAAGCTCATCTGCGCGAACCAGA

ACGCCCACCACCCTTGGGTTGAAATTAAGGA

GGCGGTTGGCAGCTTCCCAGGCGCACGTAC

CTGCGAATAAATAACTGTCCGCACAAGGAGC

CCGACGATAGTCGACCCTCTCTAGTCACGAC

CTACACACAGAACCTGTGCTAGACGCCATGA

GATAAGCTAACACAAAAACATTTCCCACTAC

TGCTGCCCGCGGGCTACCGGCCACCCCTGG

CTCAGCCTGGCGAAGCCGCCCTTCA

Let us consider the utility of

SAX for visualizing time

series. We start with an

apparent digression,

visualizing DNA….

The DNA of two species…

Are they similar?CCGTGCTAGGGCCACCTACCTTGGTCCG

CCGCAAGCTCATCTGCGCGAACCAGAAC

GCCACCACCTTGGGTTGAAATTAAGGAG

GCGGTTGGCAGCTTCCAGGCGCACGTAC

CTGCGAATAAATAACTGTCCGCACAAGG

AGCCGACGATAAAGAAGAGAGTCGACCT

CTCTAGTCACGACCTACACACAGAACCT

GTGCTAGACGCCATGAGATAAGCTAACA

Page 58: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

C T

A G

C T

A G

C T

A G

C T

A G

C T

A G

C T

A G

0.20 0.24

0.26 0.30

CCGTGCTAGGGCCACCTACCTTGGTCCG

CCGCAAGCTCATCTGCGCGAACCAGAAC

GCCACCACCTTGGGTTGAAATTAAGGAG

GCGGTTGGCAGCTTCCAGGCGCACGTAC

CTGCGAATAAATAACTGTCCGCACAAGG

AGCCGACGATAAAGAAGAGAGTCGACCT

CTCTAGTCACGACCTACACACAGAACCT

GTGCTAGACGCCATGAGATAAGCTAACA

Page 59: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

CCGTGCTAGGGCCACCTACCTTGGTCC

CCGCAAGCTCATCTGCGCGAACCAGAAC

GCCACCACCTTGGGTTGAAATTAAGGAG

GCGGTTGGCAGCTTCCAGGCGCACGTAC

CTGCGAATAAATAACTGTCCGCACAAGG

AGCCGACGATAAAGAAGAGAGTCGACC

CTCTAGTCACGACCTACACACAGAACC

GTGCTAGACGCCATGAGATAAGCTAACA

CC CT TC TT

CA CG TA TC

AC AT GC GT

AA AG GA GG

C T

A G

CCC CCT CTC

CCA CCG CTA

CAC CAT

CAA

CC CT TC TT

CA CG TA TC

AC AT GC GT

AA AG GA GG

CC CT TC TTCC CT TC TT

CA CG TA TCCA CG TA TG

AC AT GC GTAC AT GC GT

AA AG GA GGAA AG GA GG

C T

A G

C T

A G

CCC CCT CTC

CCA CCG CTA

CAC CAT

CAA

CC CT TC TT

CA CG TA TC

AC AT GC GT

AA AG GA GG

CC CT TC TTCC CT TC TT

CA CG TA TCCA CG TA TC

AC AT GC GTAC AT GC GT

AA AG GA GGAA AG GA GG

C T

A G

C T

A G

CCC CCT CTC

CCA CCG CTA

CAC CAT

CAA

CC CT TC TTCC CT TC TT

CA CG TA TCCA CG TA TC

AC AT GC GTAC AT GC GT

AA AG GA GGAA AG GA GG

CC CT TC TTCC CT TC TT

CA CG TA TCCA CG TA TG

AC AT GC GTAC AT GC GT

AA AG GA GGAA AG GA GG

C T

A G

C T

A G

CCC CCT CTC

CCA CCG CTA

CAC CAT

CAA

Page 60: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

CCGTGCTAGGCCCCACCCCTACCTTGCA

GTCCCCGCAAGCTCATCTGCGCGAACCA

GAACGCCCACCACCCTTGGGTTGAAATT

AAGGAGGCGGTTGGCAGCTTCCCAGGCG

CACGTACCTGCGAATAAATAACTGTCCGC

ACAAGGAGCCCGACGATAGTCGACCCTC

TCTAGTCACGACCTACACACAGAACCTG

TGCTAGACGCCATGAGATAAGCTAACA

CA

AC AT

AA AG

CACA

AC ATAC AT

AA AGAA AG

CA

AC AT

AA AG

CACA

AC ATAC AT

AA AGAA AG

CACA

AC ATAC AT

AA AGAA AG

0.02

CACA

AC ATAC AT

AA AGAA AG

0.04

0.03

0.09 0.04

0.07 0.02

0.11 0.03

0

1

Page 61: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

CCGTGCTAGGCCCCACCCCTACCTTGCA

GTCCCCGCAAGCTCATCTGCGCGAACCA

GAACGCCCACCACCCTTGGGTTGAAATT

AAGGAGGCGGTTGGCAGCTTCCCAGGCG

CACGTACCTGCGAATAAATAACTGTCCGC

ACAAGGAGCCCGACGATAGTCGACCCTC

TCTAGTCACGACCTACACACAGAACCTG

TGCTAGACGCCATGAGATAAGCTAACA

OK. Given any DNA

string I can make a

colored bitmap, so what?

Page 62: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Note Elephas maximus is the Indian Elephant, Loxodonta africana is

the African elephant and Pan troglodytes is the chimpanzee.

Page 63: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Two Questions

• Can we do something

similar for time series?

• Would it be useful?

Page 64: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Can we do make bitmaps for time series?

aa ab ba bb

ac ad bc bd

ca cb da db

cc cd dc dd

a b

c d

aaa aab aba

aac aad abc

aca acb

acc

accbabcdbcabdbcadbacbdbdcadbaacb…

Yes, with SAX!

Time Series Bitmap

Page 65: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

a b

c d

5 7

3 3

Imagine we have

the following SAX

strings…

abcdba

bdbadb

cbabca

There are 5 “a”

There are 7 “b”

There are 3 “c”

There are 3 “d”

7 We can paint the

pixels based on

the frequencies

Time Series Bitmaps

Page 66: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

While they are all example of EEGs, example_a.dat is

from a normal trace, whereas the others contain examples

of spike-wave discharges.

Page 67: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

We can further enhance

the time series bitmaps

by arranging the

thumbnails by “cluster”,

instead of arranging by

date, size, name etc

We can achieve this with

MDS.

July.txt June.txt April.txt

May.txt Sept.txt

March.txt

Oct.txt Feb.txt

Nov.txt Jan.txt

Dec.txt

August.txt

January

0

100

200

300

DecemberAugust

One Year of Italian Power Demand

We can further enhance

the time series bitmaps

by arranging the

thumbnails by “cluster”,

instead of arranging by

date, size, name etc

We can achieve this with

MDS.

Page 68: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

A well known dataset

Kalpakis_ECG, allegedly

contains 70 ECGS

If we view them as time

series bitmaps, a handful

stand out…

normal1.txt normal10.txt normal11.txt

normal12.txt

normal13.txt normal2.txt

normal3.txtnormal4.txt

normal5.txt

normal6.txt

normal7.txt

normal8.txt

normal9.txt

normal14.txtnormal15.txt

normal16.txt

normal17.txt

normal18.txt

Page 69: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Some of the data are not

heartbeats! They are the

action potential of a

normal pacemaker cell 0 100 200 300 400 500

0 100 200 300 400 500

initial rapid

repolarization

0 100 200 300 400 5000 100 200 300 400 500

ventricular depolarization

initial rapid

repolarization

“plateau” stage

repolarizatio

nrecovery

phase

0 100 200 300 400 500

normal1.txt normal10.txt normal11.txt

normal12.txt

normal13.txt normal2.txt

normal3.txtnormal4.txt

normal5.txt

normal6.txt

normal7.txt

normal8.txt

normal9.txt

normal14.txtnormal15.txt

normal16.txt

normal17.txt

normal18.txt

Page 70: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

We can test how much useful

information is retained in the bitmaps

by using only the bitmaps for

clustering/classification/anomaly

detection

Page 71: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

1

2

3

4

5

11

13

12

14

15

6

9

10

7

8

16

18

17

19

20

1

2

3

4

5

11

13

12

14

15

6

9

10

7

8

16

18

17

19

20

We can test how much useful

information is retained in the bitmaps

by using only the bitmaps for

clustering/classification/anomaly

detection

Cluster 1 (datasets 1 ~ 5):

BIDMC Congestive Heart Failure Database (chfdb): record chf02

Start times at 0, 82, 150, 200, 250, respectively

Cluster 2 (datasets 6 ~ 10):

BIDMC Congestive Heart Failure Database (chfdb): record chf15

Start times at 0, 82, 150, 200, 250, respectively

Cluster 3 (datasets 11 ~ 15):

Long Term ST Database (ltstdb): record 20021

Start times at 0, 50, 100, 150, 200, respectively

Cluster 4 (datasets 16 ~ 20):

MIT-BIH Noise Stress Test Database (nstdb): record 118e6

Start times at 0, 50, 100, 150, 200, respectively

Data Key

Page 72: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

We can test how much useful

information is retained in the bitmaps

by using only the bitmaps for

clustering/classification/anomaly

detection

1

2

17

18

27

28

29

30

3

4

5

6

21

22

7

8

9

10

11

12

13

14

15

16

19

20

26

25

23

24

1

2

17

18

27

28

29

30

3

4

5

6

21

22

7

8

9

10

11

12

13

14

15

16

19

20

26

25

23

24

Page 73: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Here the bitmaps are almost the same.

Here the bitmaps are very

different. This is the most

unusual section of the time

series, and it coincidences

with the PVC.

Here is a Premature Ventricular

Contraction (PVC)

Page 74: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Premature ventricular contraction Premature ventricular contractionSupraventricular escape beat

Annotations by

a cardiologist

Page 75: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

The Last WordThe sun is setting on all other symbolic representations of time series, SAX is the onlyway to go

Page 76: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

• For most classic data mining tasks

(classification, clustering and

indexing), SAX is at least as good as

the raw data, DFT, DWT, SVD etc.

• SAX allows the best anomaly

detection algorithm.

• SAX is the engine behind the only

realistic time series motif discovery

algorithm.

SAX Summary

Page 77: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

The Last WordThe sun is setting on all other symbolic representations of time series, SAX is the onlyway to go

Page 78: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Conclusions

• SAX is posed to make major contributions to

time series data mining in the next few years.

•A more general conclusion, if you want to

solve you data mining problem, think

representation, representation, representation.

Page 79: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

The slides that follow demonstrate that

SAX is as good as DFT, DWT etc for the

classic data mining tasks, this is

important, but not very exciting, thus

relegated to this appendix.

Page 80: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Experimental Validation

• Clustering

– Hierarchical

– Partitional

• Classification

– Nearest Neighbor

– Decision Tree

• Indexing

– VA File

• Discrete Data only

– Anomaly Detection

– Motif Discovery

Page 81: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Clustering

• Hierarchical Clustering

– Compute pairwise distance, merge similar

clusters bottom-up

– Compared with Euclidean, IMPACTS, and

SDA

Page 82: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Hierarchical Clustering Euclidean

IMPACTS (alphabet=8) SDA

SAX

Hierarchical Clustering

Page 83: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Clustering

• Hierarchical Clustering

– Compute pairwise distance, merge similar clusters

bottom-up

– Compared with Euclidean, IMPACTS, and SDA

• Partitional Clustering

– K-means

– Optimize the objective function by minimizing the sum

of squared intra-cluster errors

– Compared with Raw data

Page 84: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Partitional (K-means) Clustering

Partitional (k-means) Clustering

Number of Iterations

220000

225000

230000

235000

240000

245000

250000

255000

260000

265000

1 2 3 4 5 6 7 8 9 10 11

Raw data Our Symbolic Approach

Obje

ctiv

e F

un

ctio

n

Raw data

SAX

Page 85: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Classification

• Nearest Neighbor

– Leaving-one-out cross validation

– Compared with Euclidean Distance, IMPACTS,

SDA, and LP∞

– Datasets: Control Charts & CBF (Cylinder,

Bell, Funnel)

Page 86: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Nearest Neighbor

5 6 7 8 9 10

Impacts SDA Euclidean LP max SAX

0

0.1

0.2

0.3

0.4

0.5

0.6

5 6 7 8 9 10

Control Chart Cylinder - Bell - Funnel

Err

or

Rat

e

Alphabet Size Alphabet Size

Nearest Neighbor

Page 87: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Classification• Nearest Neighbor

– Leaving-one-out cross validation

– Compared with Euclidean Distance, IMPACTS, SDA,

and LP∞

– Datasets: Control Charts & CBF (Cylinder, Bell,

Funnel)

• Decision Tree

– Defined for real data, but attempting to use DT on time

series raw data would be a mistake

• High dimensionality/Noise level would result in deep, bushy

trees

– Geurts (’01) suggests representng time series as

Regression Tree, and training decision tree on it.0 50 100

Adaptive Piecewise

Constant Approximation

Page 88: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Decision (Regression) Tree

Dataset SAX Regression Tree

CC 3.04 ± 1.64 2.78 ± 2.11

CBF 0.97 ± 1.41 1.14 ± 1.02

Page 89: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Indexing

• Indexing scheme similar to VA (Vector

Approximation) File

– Dataset is large and disk-resident

– Reduced dimensionality could still be too high

for R-tree to perform well

• Compare with Haar Wavelet

Page 90: CD-Rom, please read carefully.mueen/Teaching/CS591/...CD-Rom, please read carefully. Fair Use Agreement. This agreement covers the use of all slides on this CD-Rom, please read carefully

Indexing

0 0.1

0.2 0.3 0.4

0.5 0.6

Ballbeam Chaotic Memory Winding Dataset

DWT Haar SAX