Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 CPS216: Advanced Database Systems Data Mining Slides created by Jeffrey Ullman, Stanford.

Similar presentations


Presentation on theme: "1 CPS216: Advanced Database Systems Data Mining Slides created by Jeffrey Ullman, Stanford."— Presentation transcript:

1 1 CPS216: Advanced Database Systems Data Mining Slides created by Jeffrey Ullman, Stanford

2 2 What is Data Mining? uDiscovery of useful, possibly unexpected, patterns in data. uSubsidiary issues: wData cleansing: detection of bogus data. E.g., age = 150. wVisualization: something better than megabyte files of output. wWarehousing of data (for retrieval).

3 3 Typical Kinds of Patterns 1.Decision trees: succinct ways to classify by testing properties. 2.Clusters: another succinct classification by similarity of properties. 3.Bayes, hidden-Markov, and other statistical models, frequent-itemsets: expose important associations within data.

4 4 Example: Clusters x x x x x x x xx x x x x x x x x x x x x x x x x x x

5 5 Example: Frequent Itemsets uA common marketing problem: examine what people buy together to discover patterns. 1.What pairs of items are unusually often found together at Kroger checkout? Answer: diapers and beer. 2.What books are likely to be bought by the same Amazon customer?

6 6 Meaningfulness of Answers uA big risk when data mining is that you will “discover” patterns that are meaningless. uStatisticians call it Bonferroni’s principle: (roughly) if you look in more places for interesting patterns than your amount of data will support, you are bound to find “false patterns”.

7 7 Rhine Paradox --- (1) uDavid Rhine was a parapsychologist in the 1950’s who hypothesized that some people had Extra-Sensory Perception. uHe devised an experiment where subjects were asked to guess 10 hidden cards --- red or blue. uHe discovered that almost 1 in 1000 had ESP --- they were able to get all 10 right!

8 8 Rhine Paradox --- (2) uHe told these people they had ESP and called them in for another test of the same type. uAlas, he discovered that almost all of them had lost their ESP. uWhat did he conclude? wAnswer on next slide.

9 9 Rhine Paradox --- (3) uHe concluded that you shouldn’t tell people they have ESP; it causes them to lose it.

10 10 “Association Rules” Market Baskets Frequent Itemsets A-priori Algorithm

11 11 The Market-Basket Model uA large set of items, e.g., things sold in a supermarket. uA large set of baskets, each of which is a small set of the items, e.g., the things one customer buys on one day.

12 12 Association Rule Mining transaction id customer id products bought sales records: Trend: Products p5, p8 often bought together market-basket data

13 13 Support uSimplest question: find sets of items that appear “frequently” in the baskets. uSupport for itemset I = the number of baskets containing all items in I. uGiven a support threshold s, sets of items that appear in > s baskets are called frequent itemsets.

14 14 Example uItems={milk, coke, pepsi, beer, juice}. uSupport = 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} uFrequent itemsets: {m}, {c}, {b}, {j}, {m, b}, {c, b}, {j, c}.

15 15 Applications --- (1) uReal market baskets: chain stores keep terabytes of information about what customers buy together. wTells how typical customers navigate stores, lets them position tempting items. wSuggests tie-in “tricks,” e.g., run sale on diapers and raise the price of beer. uHigh support needed, or no $$’s.

16 16 Applications --- (2) u“Baskets” = documents; “items” = words in those documents. wLets us find words that appear together unusually frequently, i.e., linked concepts. u“Baskets” = sentences, “items” = documents containing those sentences. wItems that appear together too often could represent plagiarism.

17 17 Applications --- (3) u“Baskets” = Web pages; “items” = linked pages. wPairs of pages with many common references may be about the same topic. u“Baskets” = Web pages p ; “items” = pages that link to p. wPages with many of the same links may be mirrors or about the same topic.

18 18 Important Point u“Market Baskets” is an abstraction that models any many-many relationship between two concepts: “items” and “baskets.” wItems need not be “contained” in baskets. uThe only difference is that we count co- occurrences of items related to a basket, not vice-versa.

19 19 Scale of Problem uWalMart sells 100,000 items and can store billions of baskets. uThe Web has over 100,000,000 words and billions of pages.

20 20 Association Rules uIf-then rules about the contents of baskets.  {i 1, i 2,…,i k } → j means: “if a basket contains all of i 1,…,i k then it is likely to contain j. uConfidence of this association rule is the probability of j given i 1,…,i k.

21 21 Example 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}  An association rule: {m, b} → c. wConfidence = 2/4 = 50%. + _ +

22 22 Interest uThe interest of an association rule is the absolute value of the amount by which the confidence differs from what you would expect, were items selected independently of one another.

23 23 Example 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}  For association rule {m, b} → c, item c appears in 5/8 of the baskets. uInterest = | 2/4 - 5/8 | = 1/8 --- not very interesting.

24 24 Relationships Among Measures uRules with high support and confidence may be useful even if they are not “interesting.” wWe don’t care if buying bread causes people to buy milk, or whether simply a lot of people buy both bread and milk. uBut high interest suggests a cause that might be worth investigating.

25 25 Finding Association Rules  A typical question: “find all association rules with support ≥ s and confidence ≥ c.” wNote: “support” of an association rule is the support of the set of items it mentions. uHard part: finding the high-support (frequent ) itemsets. wChecking the confidence of association rules involving those sets is relatively easy.

26 26 Computation Model uTypically, data is kept in a “flat file” rather than a database system. wStored on disk. wStored basket-by-basket. wExpand baskets into pairs, triples, etc. as you read baskets.

27 27 Computation Model --- (2) uThe true cost of mining disk-resident data is usually the number of disk I/O’s. uIn practice, association-rule algorithms read the data in passes --- all baskets read in turn. uThus, we measure the cost by the number of passes an algorithm takes.

28 28 Main-Memory Bottleneck uIn many algorithms to find frequent itemsets we need to worry about how main memory is used. wAs we read baskets, we need to count something, e.g., occurrences of pairs. wThe number of different things we can count is limited by main memory. wSwapping counts in/out is a disaster.

29 29 Finding Frequent Pairs uThe hardest problem often turns out to be finding the frequent pairs. uWe’ll concentrate on how to do that, then discuss extensions to finding frequent triples, etc.

30 30 Naïve Algorithm uA simple way to find frequent pairs is: wRead file once, counting in main memory the occurrences of each pair. Expand each basket of n items into its n (n -1)/2 pairs. uFails if #items-squared exceeds main memory.

31 31 Details of Main-Memory Counting uThere are two basic approaches: 1.Count all item pairs, using a triangular matrix. 2.Keep a table of triples [i, j, c] = the count of the pair of items {i,j } is c. u(1) requires only (say) 4 bytes/pair; (2) requires 12 bytes, but only for those pairs with >0 counts.

32 32 4 per pair Method (1) Method (2) 12 per occurring pair

33 33 Details of Approach (1) uNumber items 1,2,… uKeep pairs in the order {1,2}, {1,3},…, {1,n }, {2,3}, {2,4},…,{2,n }, {3,4},…, {3,n },…{n -1,n }. uFind pair {i, j } at the position (i –1)(n –i /2) + j – i. uTotal number of pairs n (n –1)/2; total bytes about 2n 2.

34 34 Details of Approach (2) uYou need a hash table, with i and j as the key, to locate (i, j, c) triples efficiently. wTypically, the cost of the hash structure can be neglected. uTotal bytes used is about 12p, where p is the number of pairs that actually occur. wBeats triangular matrix if at most 1/3 of possible pairs actually occur.

35 35 A-Priori Algorithm --- (1) uA two-pass approach called a-priori limits the need for main memory. uKey idea: monotonicity : if a set of items appears at least s times, so does every subset. wContrapositive for pairs: if item i does not appear in s baskets, then no pair including i can appear in s baskets.

36 36 A-Priori Algorithm --- (2) uPass 1: Read baskets and count in main memory the occurrences of each item. wRequires only memory proportional to #items. uPass 2: Read baskets again and count in main memory only those pairs both of which were found in Pass 1 to be frequent. wRequires memory proportional to square of frequent items only.

37 37 Picture of A-Priori Item counts Pass 1Pass 2 Frequent items Counts of candidate pairs

38 38 Detail for A-Priori uYou can use the triangular matrix method with n = number of frequent items. wSaves space compared with storing triples. uTrick: number frequent items 1,2,… and keep a table relating new numbers to original item numbers.

39 39 Frequent Triples, Etc. uFor each k, we construct two sets of k –tuples: wC k = candidate k – tuples = those that might be frequent sets (support > s ) based on information from the pass for k –1. wL k = the set of truly frequent k –tuples.

40 40 C1C1 L1L1 C2C2 L2L2 C3C3 Filter Construct First pass Second pass

41 41 A-Priori for All Frequent Itemsets uOne pass for each k. uNeeds room in main memory to count each candidate k –tuple. uFor typical market-basket data and reasonable support (e.g., 1%), k = 2 requires the most memory.

42 42 Frequent Itemsets --- (2) uC 1 = all items uL 1 = those counted on first pass to be frequent. uC 2 = pairs, both chosen from L 1. uIn general, C k = k –tuples each k –1 of which is in L k-1.  L k = those candidates with support ≥ s.


Download ppt "1 CPS216: Advanced Database Systems Data Mining Slides created by Jeffrey Ullman, Stanford."

Similar presentations


Ads by Google