Top Banner
Frequent Itemset Mining and Association Rules Data Mining Prof. Yannis Velegrakis Utrecht University [email protected] https://velgias.github.io Disclaimer: The lecture and the slides are based on J. Leskovec, A. Rajaraman, J. Ullman: Mining of Massive Datasets, http://www.mmds.org , that maintain the copyright
60

Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

May 28, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

Frequent Itemset Mining and Association Rules

Data Mining

Prof. Yannis VelegrakisUtrecht University

[email protected]://velgias.github.io

Disclaimer: The lecture and the slides are based on J. Leskovec, A. Rajaraman, J. Ullman: Mining of Massive Datasets, http://www.mmds.org, that maintain the copyright

Page 2: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

2

Association Rule Discovery

Supermarket shelf management – Market-basket model:

lGoal: Identify items that are bought together by sufficiently many customers

lApproach: Process the sales data collected with barcode scanners to find dependencies among items

lA classic rule:n If someone buys diaper and milk, then he/she is

likely to buy beern Don’t be surprised if you find six-packs next to diapers!

Page 3: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

3

The Market-Basket Model

l A large set of itemsn e.g., things sold in a

supermarket

l A large set of basketsl Each basket is a

small subset of itemsn e.g., the things one

customer buys on one day

l Want to discover association rulesn People who bought {x,y,z} tend to buy {v,w}

uAmazon!

Rules Discovered:{Milk} --> {Coke}

{Diaper, Milk} --> {Beer}

TID Items

1 Bread, Coke, Milk

2 Beer, Bread

3 Beer, Coke, Diaper, Milk

4 Beer, Bread, Diaper, Milk

5 Coke, Diaper, Milk

Input:

Output:

Page 4: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

4

Applications – (1)

l Items = products; Baskets = sets of products someone bought in one trip to the store

l Real market baskets: Chain stores keep TBs of data about what customers buy togethern Tells how typical customers navigate stores, lets them

position tempting itemsn Suggests tie-in “tricks”, e.g., run sale on diapers

and raise the price of beern Need the rule to occur frequently, or no $$’s

l Amazon’s people who bought X also bought Y

Page 5: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

5

Applications – (2)

l Baskets = sentences; Items = documents containing those sentencesn Items that appear together too often could represent

plagiarismn Notice items do not have to be “in” baskets

l Baskets = patients; Items = drugs & side-effectsn Has been used to detect combinations

of drugs that result in particular side-effectsn But requires extension: Absence of an item

needs to be observed as well as presence

Page 6: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

6

Applications – (3)

l Baskets = documents; Items = wordsn Usual words appearing together in a large number of

documents, e.g., Brad and Angelina may indicate thatsome interesting relationship exists between them.

Page 7: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

7

More generally

l A general many-to-many mapping (association) between two kinds of thingsn But we ask about connections among “items”,

not “baskets”

l For example:n Finding communities in graphs (e.g., Twitter)

Page 8: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

8

Example:

l Finding communities in graphs (e.g., Twitter)l Baskets = nodes; Items = outgoing neighbors

n Searching for complete bipartite subgraphs Ks,t of a big graph

l How?n View each node i as a

basket Bi of nodes i it points ton Ks,t = a set Y of size t that

occurs in s buckets Bi

n Looking for Ks,t à set of support s and look at layer t – all frequent sets of size t

A dense 2-layer graph

sno

des

tnod

es

Page 9: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

9

Outline

l First: Definen Frequent itemsetsn Association rules:n Confidence, Support, Interestingness

l Then: Algorithms for finding frequent itemsetsn Finding frequent pairsn A-Priori algorithmn PCY algorithm + 2 refinements

Page 10: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

10

Frequent Itemsets

l Simplest question: Find sets of items that appear together “frequently” in baskets

l Support for itemset I: Number of baskets containing all items in In (Often expressed as a fraction

of the total number of baskets)

l Given a support threshold s, then sets of items that appear in at least s baskets are called frequent itemsets

TID Items

1 Bread, Coke, Milk

2 Beer, Bread

3 Beer, Coke, Diaper, Milk

4 Beer, Bread, Diaper, Milk

5 Coke, Diaper, Milk

Support of {Beer, Bread} = 2

Page 11: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

11

Example: Frequent Itemsets

l Items = {milk, coke, pepsi, beer, juice}l Support threshold = 3 baskets

B1 = {m, c, b} B2 = {m, p, j}B3 = {m, b} B4 = {c, j}B5 = {m, p, b} B6 = {m, c, b, j}B7 = {c, b, j} B8 = {b, c}

l Frequent itemsets: {m}, {c}, {b}, {j},

, {b,c}, {c,j}.{m,b}

Page 12: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

12

Association Rules

l Association Rules:If-then rules about the contents of baskets

l {i1, i2,…,ik} → j means: “if a basket contains all of i1,…,ikthen it is likely to contain j”

l In practice there are many rules, want to find significant/interesting ones!

l Confidence of this association rule is the probability of jgiven I = {i1,…,ik}

)support()support()conf(

IjIjI È

Page 13: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

13

Interesting Association Rules

l Not all high-confidence rules are interestingn The rule X → milk may have high confidence for many

itemsets X, because milk is just purchased very often (independent of X) and the confidence will be high

l Interest of an association rule I → j: difference between its confidence and the fraction of baskets that contain j

n Interesting rules are those with high positive or negative interest values (usually above 0.5)

]Pr[)conf()Interest( jjIjI -®=®

Page 14: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

14

Example: Confidence and Interest

B1 = {m, c, b} B2 = {m, p, j}B3 = {m, b} B4= {c, j}B5 = {m, p, b} B6 = {m, c, b, j}B7 = {c, b, j} B8 = {b, c}

l Association rule: {m, b} →cn Confidence = 2/4 = 0.5n Interest = |0.5 – 5/8| = 1/8

uItem c appears in 5/8 of the basketsuRule is not very interesting!

Page 15: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

15

Finding Association Rules

l Problem: Find all association rules with support ≥s and confidence ≥cn Note: Support of an association rule is the support of

the set of items on the left side

l Hard part: Finding the frequent itemsets!n If {i1, i2,…, ik} → j has high support and confidence, then

both {i1, i2,…, ik} and{i1, i2,…,ik, j} will be “frequent”

)support()support()conf(

IjIjI È

Page 16: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

16

Mining Association Rules

l Step 1: Find all frequent itemsets In (we will explain this next)

l Step 2: Rule generationn For every subset A of I, generate a rule A → I \ A

uSince I is frequent, A is also frequentuVariant 1: Single pass to compute the rule confidence

v confidence(A,B→C,D) = support(A,B,C,D) / support(A,B)uVariant 2:

v Observation: If A,B,C→D is below confidence, so is A,B→C,Dv Can generate “bigger” rules from smaller ones!

n Output the rules above the confidence threshold

Page 17: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

17

Example

B1 = {m, c, b} B2 = {m, p, j}B3 = {m, c, b, n} B4= {c, j}B5 = {m, p, b} B6 = {m, c, b, j}B7 = {c, b, j} B8 = {b, c}

l Support threshold s = 3, confidence c = 0.75l 1) Frequent itemsets:

n {b,m} {b,c} {c,m} {c,j} {m,c,b}l 2) Generate rules:

n b→m: c=4/6 b→c: c=5/6 b,c→m: c=3/5n m→b: c=4/5 … b,m→c: c=3/4n b→c,m: c=3/6

Page 18: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

18

Compacting the Output

l To reduce the number of rules we can post-process them and only output:n Maximal frequent itemsets:

No immediate superset is frequentuGives more pruning

orn Closed itemsets:

No immediate superset has the same count (> 0)uStores not only frequent information, but exact counts

J. Leskovec, A. Rajaraman, J. Ullman: Mining of Massive Datasets, http://www.mmds.org 18

Page 19: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

19

Example: Maximal/Closed

Support Maximal(s=3) ClosedA 4 No NoB 5 No YesC 3 No NoAB 4 Yes YesAC 2 No NoBC 3 Yes YesABC 2 No Yes

Frequent, butsuperset BC

also frequent.

Frequent, andits only superset,

ABC, not freq.

Superset BChas same count.

Its only super-set, ABC, hassmaller count.

Page 20: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

Finding Frequent Itemsets

More details

Page 21: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

21

Itemsets: Computation Model

l Back to finding frequent itemsetsl Typically, data is kept in flat files

rather than in a database system:n Stored on diskn Stored basket-by-basketn Baskets are small but we have

many baskets and many itemsuExpand baskets into pairs, triples, etc.

as you read basketsuUse k nested loops to generate all

sets of size k

ItemItemItemItemItemItemItem

Item

ItemItemItem

Item

Etc.

Items are positive integers, and boundaries between

baskets are –1.Note: We want to find frequent itemsets. To find them, we have to count them. To

count them, we have to generate them.

Page 22: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

22

Computation Model

l The true cost of mining disk-resident data is usually the number of disk I/Os

l In practice, association-rule algorithms read the data in passes – all baskets read in turn

l We measure the cost by the number of passes an algorithm makes over the data

Page 23: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

23

Main-Memory Bottleneck

l For many frequent-itemset algorithms, main-memory is the critical resourcen As we read baskets, we need to count

something, e.g., occurrences of pairs of itemsn The number of different things we can count

is limited by main memoryn Swapping counts in/out is a disaster (why?)

Page 24: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

24

Finding Frequent Pairs

l The hardest problem often turns out to be finding the frequent pairs of items {i1, i2}n Why? Freq. pairs are common, freq. triples are rare

uWhy? Probability of being frequent drops exponentially with size; number of sets grows more slowly with size

l Let’s first concentrate on pairs, then extend to larger sets

l The approach:n We always need to generate all the itemsetsn But we would only like to count (keep track) of those

itemsets that in the end turn out to be frequent

Page 25: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

25

Naïve Algorithm

l Naïve approach to finding frequent pairsl Read file once, counting in main memory

the occurrences of each pair:n From each basket of n items, generate its

n(n-1)/2 pairs by two nested loops

l Fails if (#items)2 exceeds main memoryn Remember: #items can be

100K (Wal-Mart) or 10B (Web pages)uSuppose 105 items, counts are 4-byte integersuNumber of pairs of items: 105(105-1)/2 = 5*109

uTherefore, 2*1010 (20 gigabytes) of memory needed

Page 26: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

26

Counting Pairs in Memory

Two approaches:l Approach 1: Count all pairs using a matrixl Approach 2: Keep a table of triples [i, j, c] = “the count

of the pair of items {i, j} is c.”n If integers and item ids are 4 bytes, we need

approximately 12 bytes for pairs with count > 0n Plus some additional overhead for the hashtable

Note:l Approach 1 only requires 4 bytes per pairl Approach 2 uses 12 bytes per pair

(but only for pairs with count > 0)

Page 27: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

27

Comparing the 2 Approaches

4 bytes per pair

Triangular Matrix Triples

12 peroccurring pair

Page 28: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

28

Comparing the two approaches

l Approach 1: Triangular Matrixn n = total number itemsn Count pair of items {i, j} only if i<jn Keep pair counts in lexicographic order:

u{1,2}, {1,3},…, {1,n}, {2,3}, {2,4},…,{2,n}, {3,4},…n Pair {i, j} is at position (i –1)(n– i/2) + j –1n Total number of pairs n(n –1)/2; total bytes= 2n2

n Triangular Matrix requires 4 bytes per pair

l Approach 2 uses 12 bytes per occurring pair (but only for pairs with count > 0)n Beats Approach 1 if less than 1/3 of

possible pairs actually occur

Page 29: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

29

Comparing the two approaches

l Approach 1: Triangular Matrixn n = total number itemsn Count pair of items {i, j} only if i<jn Keep pair counts in lexicographic order:

u{1,2}, {1,3},…, {1,n}, {2,3}, {2,4},…,{2,n}, {3,4},…n Pair {i, j} is at position (i –1)(n– i/2) + j –1n Total number of pairs n(n –1)/2; total bytes= 2n2

n Triangular Matrix requires 4 bytes per pair

l Approach 2 uses 12 bytes per pair (but only for pairs with count > 0)n Beats Approach 1 if less than 1/3 of

possible pairs actually occur

Problem is if we have too many

items so the pairs do not fit into

memory.Can we do better?

Page 30: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

A-Priori Algorithm

Algorithms

Page 31: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

31

A-Priori Algorithm – (1)

l A two-pass approach called A-Priori limits the need for main memory

l Key idea: monotonicityn If a set of items I appears at

least s times, so does every subset J of I

l Contrapositive for pairs:If item i does not appear in s baskets, then no pair including i can appear in s baskets

l So, how does A-Priori find freq. pairs?

Page 32: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

32

A-Priori Algorithm – (2)

l Pass 1: Read baskets and count in main memory the occurrences of each individual item

uRequires only memory proportional to #items

l Items that appear ≥ 𝒔 times are the frequent items

l Pass 2: Read baskets again and count in main memory only those pairs where both elements are frequent (from Pass 1)n Requires memory proportional to square of frequent items

only (for counts)n Plus a list of the frequent items (so you know what must be

counted)

Page 33: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

33

Main-Memory: Picture of A-Priori

Item counts

Pass 1 Pass 2

Frequent itemsM

ain

mem

ory

Counts of pairs of frequent items (candidate

pairs)

Page 34: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

34

Detail for A-Priori

l You can use the triangular matrix method with n = number of frequent itemsn May save space compared

with storing triples

l Trick: re-number frequent items 1,2,… and keep a table relating new numbers to original item numbers

Item counts

Pass 1 Pass 2

Counts of pairs of frequent items

Frequent items

Olditem#s

Mai

n m

emor

y

Counts of pairs of

frequent items

Page 35: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

35

Frequent Triples, Etc.

l For each k, we construct two sets ofk-tuples (sets of size k):n Ck = candidate k-tuples = those that might be frequent

sets (support > s) based on information from the pass for k–1

n Lk = the set of truly frequent k-tuples

C1 L1 C2 L2 C3Filter Filter ConstructConstruct

Allitems

All pairsof itemsfrom L1

Countthe pairs

To beexplained

Countthe items

Page 36: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

36

Example

l Hypothetical steps of the A-Priori algorithmn C1 = { {b} {c} {j} {m} {n} {p} }n Count the support of itemsets in C1

n Prune non-frequent: L1 = { b, c, j, m }n Generate C2 = { {b,c} {b,j} {b,m} {c,j} {c,m} {j,m} }n Count the support of itemsets in C2

n Prune non-frequent: L2 = { {b,m} {b,c} {c,m} {c,j} }n Generate C3 = { {b,c,m} {b,c,j} {b,m,j} {c,m,j} }n Count the support of itemsets in C3

n Prune non-frequent: L3 = { {b,c,m} }

** Note here we generate new candidates by generating Ck from Lk-1 and L1.

But that one can be more careful with candidate generation. For example, in C3 we know {b,m,j} cannot be frequent since {m,j} is not frequent

**

Page 37: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

37

A-Priori for All Frequent Itemsets

l One pass for each k (itemset size)l Needs room in main memory to count

each candidate k–tuplel For typical market-basket data and reasonable support

(e.g., 1%), k = 2 requires the most memory

l Many possible extensions:n Association rules with intervals:

uFor example: Men over 65 have 2 carsn Association rules when items are in a taxonomy

uBread, Butter → FruitJamuBakedGoods, MilkProduct → PreservedGoods

n Lower the support s as itemset gets bigger

Page 38: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

PCY (Park-Chen-Yu) Algorithm

Algorithms

Page 39: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

39

PCY (Park-Chen-Yu) Algorithm

l Observation: In pass 1 of A-Priori, most memory is idlen We store only individual item countsn Can we use the idle memory to reduce

memory required in pass 2?

l Pass 1 of PCY: In addition to item counts, maintain a hash table with as many buckets as fit in memory n Keep a count for each bucket into which

pairs of items are hasheduFor each bucket just keep the count, not the actual

pairs that hash to the bucket!

Page 40: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

40

PCY Algorithm – First Pass

FOR (each basket) :FOR (each item in the basket) :

add 1 to item’s count;

FOR (each pair of items) :hash the pair to a bucket;add 1 to the count for that bucket;

l Few things to note:n Pairs of items need to be generated from the input file; they

are not present in the filen We are not just interested in the presence of a pair, but we

need to see whether it is present at least s (support) times

New in

PCY

Page 41: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

41

Observations about Buckets

l Observation: If a bucket contains a frequent pair, then the bucket is surely frequent

l However, even without any frequent pair, a bucket can still be frequent Ln So, we cannot use the hash to eliminate any

member (pair) of a “frequent” bucket

l But, for a bucket with total count less than s, none of its pairs can be frequent Jn Pairs that hash to this bucket can be eliminated as

candidates (even if the pair consists of 2 frequent items)

l Pass 2:Only count pairs that hash to frequent buckets

Page 42: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

42

PCY Algorithm – Between Passes

l Replace the buckets by a bit-vector:n 1 means the bucket count exceeded the support s

(call it a frequent bucket); 0 means it did not

l 4-byte integer counts are replaced by bits, so the bit-vector requires 1/32 of memory

l Also, decide which items are frequent and list them for the second pass

Page 43: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

43

PCY Algorithm – Pass 2

l Count all pairs {i, j} that meet the conditions for being a candidate pair:

1. Both i and j are frequent items2. The pair {i, j} hashes to a bucket whose bit in the bit

vector is 1 (i.e., a frequent bucket)

l Both conditions are necessary for the pair to have a chance of being frequent

Page 44: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

44

Main-Memory: Picture of PCY

Hashtable

Item counts

Bitmap

Pass 1 Pass 2

Frequent items

Hash tablefor pairsM

ain

mem

ory

Counts ofcandidate

pairs

Page 45: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

45

Main-Memory Details

l Buckets require a few bytes each:n Note: we do not have to count past sn #buckets is O(main-memory size)

l On second pass, a table of (item, item, count) triples is essential (we cannot use triangular matrix approach, why?)n Thus, hash table must eliminate approx. 2/3

of the candidate pairs for PCY to beat A-Priori

Page 46: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

46

Refinement: Multistage Algorithm

l Limit the number of candidates to be countedn Remember: Memory is the bottleneckn Still need to generate all the itemsets but we only want to

count/keep track of the ones that are frequent

l Key idea: After Pass 1 of PCY, rehash only those pairs that qualify for Pass 2 of PCYn i and j are frequent, and n {i, j} hashes to a frequent bucket from Pass 1

l On middle pass, fewer pairs contribute to buckets, so fewer false positives

l Requires 3 passes over the data

Page 47: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

47

Main-Memory: Multistage

Firsthash table

Item counts

Bitmap 1 Bitmap 1

Bitmap 2

Freq. items Freq. items

Counts ofcandidate

pairs

Pass 1 Pass 2 Pass 3

Count itemsHash pairs {i,j}

Hash pairs {i,j}into Hash2 iff:

i,j are frequent,{i,j} hashes to

freq. bucket in B1

Count pairs {i,j} iff:i,j are frequent,{i,j} hashes to

freq. bucket in B1{i,j} hashes to

freq. bucket in B2

First hash table Second

hash table Counts ofcandidate

pairs

Mai

n m

emor

y

Page 48: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

48

Multistage – Pass 3

l Count only those pairs {i, j} that satisfy these candidate pair conditions:

1. Both i and j are frequent items2. Using the first hash function, the pair hashes to

a bucket whose bit in the first bit-vector is 13. Using the second hash function, the pair hashes to a

bucket whose bit in the second bit-vector is 1

Page 49: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

49

Important Points

1. The two hash functions have to be independent

2. We need to check both hashes on the third passn If not, we would end up counting pairs of frequent items

that hashed first to an infrequent bucket but happened to hash second to a frequent bucket

Page 50: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

50

Refinement: Multihash

l Key idea: Use several independent hash tables on the first pass

l Risk: Halving the number of buckets doubles the average countn We have to be sure most buckets will still not reach

count s

l If so, we can get a benefit like multistage, but in only 2 passes

Page 51: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

51

Main-Memory: Multihash

First hashtable

Secondhash table

Item counts

Bitmap 1

Bitmap 2

Freq. items

Counts ofcandidate

pairs

Pass 1 Pass 2

Firsthash table

Secondhash table

Counts ofcandidate

pairs

Mai

n m

emor

y

Page 52: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

52

PCY: Extensions

l Either multistage or multihash can use more than two hash functions

l In multistage, there is a point of diminishing returns, since the bit-vectors eventually consume all of main memory

l For multihash, the bit-vectors occupy exactly what one PCY bitmap does, but too many hash functions makes all counts > s

Page 53: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

Frequent Itemsetsin < 2 Passes

Algorithms

Page 54: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

54

Frequent Itemsets in < 2 Passes

l A-Priori, PCY, etc., take k passes to find frequent itemsets of size k

l Can we use fewer passes?

l Use 2 or fewer passes for all sizes, but may miss some frequent itemsetsn Random samplingn SON (Savasere, Omiecinski, and Navathe)n Toivonen (see textbook)

Page 55: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

55

Random Sampling (1)

l Take a random sample of the market baskets

l Run a-priori or one of its improvementsin main memoryn So we don’t pay for disk I/O each

time we increase the size of itemsetsn Reduce support threshold

proportionally to match the sample size

Copy ofsamplebaskets

Spacefor

counts

Mai

n m

emor

y

Page 56: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

56

Random Sampling (2)

l Optionally, verify that the candidate pairs are truly frequent in the entire data set by a second pass (avoid false positives)

l But you don’t catch sets frequent in the whole but not in the samplen Smaller threshold, e.g., s/125, helps catch more truly

frequent itemsetsuBut requires more space

Page 57: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

5757

SON Algorithm – (1)

l Repeatedly read small subsets of the baskets into main memory and run an in-memory algorithm to find all frequent itemsetsn Note: we are not sampling, but processing the entire file in

memory-sized chunks

l An itemset becomes a candidate if it is found to be frequent in any one or more subsets of the baskets.

J. Leskovec, A. Rajaraman, J. Ullman: Mining of Massive Datasets, http://www.mmds.org

Page 58: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

58

SON Algorithm – (2)

l On a second pass, count all the candidate itemsets and determine which are frequent in the entire set

l Key “monotonicity” idea: an itemset cannot be frequent in the entire set of baskets unless it is frequent in at least one subset.

Page 59: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

59

SON – Distributed Version

l SON lends itself to distributed data mining

l Baskets distributed among many nodes n Compute frequent itemsets at each noden Distribute candidates to all nodesn Accumulate the counts of all candidates

Page 60: Frequent Itemset Mining and Association Rules Itemsets.pdf · 2 Association Rule Discovery Supermarket shelf management –Market-basket model: lGoal:Identify items that are bought

60

SON: Map/Reduce

l Phase 1: Find candidate itemsetsn Map?n Reduce?

l Phase 2: Find true frequent itemsetsn Map?n Reduce?