COMP90049 Knowledge Technologies

Similar documents
An Introduction to Data Mining BY:GAGAN DEEP KAUSHAL

Foundation of Data Mining: Introduction

Data Mining Course Overview

Knowledge Discovery and Data Mining

Data Mining: Introduction. Lecture Notes for Chapter 1. Introduction to Data Mining

Introduction to Data Mining. Komate AMPHAWAN

Data Mining Concept. References. Why Mine Data? Commercial Viewpoint. Why Mine Data? Scientific Viewpoint

Introduction to Data Mining CS 584 Data Mining (Fall 2016)

CISC 4631 Data Mining Lecture 01:

Data Mining. Yi-Cheng Chen ( 陳以錚 ) Dept. of Computer Science & Information Engineering, Tamkang University

Stats Overview Ji Zhu, Michigan Statistics 1. Overview. Ji Zhu 445C West Hall

Includes Review of Syllabus OVERVIEW OF THE CLASS

CSE4334/5334 DATA MINING

DATA MINING II - 1DL460

DATA MINING II - 1DL460

Thanks to the advances of data processing technologies, a lot of data can be collected and stored in databases efficiently New challenges: with a

Data mining fundamentals

Data Mining & Machine Learning

COMP 465 Special Topics: Data Mining

D B M G Data Base and Data Mining Group of Politecnico di Torino

COMP 6838 Data MIning

Data Mining Concepts & Techniques

Classification: Basic Concepts, Decision Trees, and Model Evaluation

Classification and Regression

CS377: Database Systems Data Warehouse and Data Mining. Li Xiong Department of Mathematics and Computer Science Emory University

CS246: Mining Massive Datasets Jure Leskovec, Stanford University.

Data Preprocessing UE 141 Spring 2013

Part I. Instructor: Wei Ding

Jarek Szlichta

DATA MINING LECTURE 1. Introduction

What Is Data Mining? CMPT 354: Database I -- Data Mining 2

Data Mining: Data. What is Data? Lecture Notes for Chapter 2. Introduction to Data Mining. Properties of Attribute Values. Types of Attributes

Data Mining: Data. Lecture Notes for Chapter 2. Introduction to Data Mining

Chapter 3: Data Mining:

9 Classification: KNN and SVM

INTRODUCTION TO DATA MINING ASSOCIATION RULES. Luiza Antonie

Data Mining a.a. 2009/10. Introduzione

Overview. Data-mining. Commercial & Scientific Applications. Ongoing Research Activities. From Research to Technology Transfer

KNOWLEDGE DISCOVERY AND DATA MINING

Data Mining Concepts & Techniques

Clustering Basic Concepts and Algorithms 1

ANU MLSS 2010: Data Mining. Part 2: Association rule mining

Data warehouse and Data Mining

Introduction to Data Mining and Data Analytics

Business Analytics and Big Data: the process and the tools

Data Mining Classification - Part 1 -

CAP-359 PRINCIPLES AND APPLICATIONS OF DATA MINING. Rafael Santos

Data Mining Clustering

Classification. Instructor: Wei Ding

Chapter 28. Outline. Definitions of Data Mining. Data Mining Concepts

DATA MINING LECTURE 1. Introduction

Machine Learning: Symbol-based

Extra readings beyond the lecture slides are important:

Data Structures. Notes for Lecture 14 Techniques of Data Mining By Samaher Hussein Ali Association Rules: Basic Concepts and Application

Lecture Topic Projects 1 Intro, schedule, and logistics 2 Data Science components and tasks 3 Data types Project #1 out 4 Introduction to R,

Preprocessing DWML, /33

Data Mining I Introduction and Course Organisation

INTRODUCTION TO DATA MINING. Daniel Rodríguez, University of Alcalá

Data Mining. Ryan Benton Center for Advanced Computer Studies University of Louisiana at Lafayette Lafayette, La., USA.

INTRODUCTION TO DATA MINING

Data Mining Concepts & Tasks

Data Mining Concepts. Duen Horng (Polo) Chau Assistant Professor Associate Director, MS Analytics Georgia Tech

Database and Knowledge-Base Systems: Data Mining. Martin Ester

Data Mining Concepts & Tasks

INTRODUCTION TO BIG DATA, DATA MINING, AND MACHINE LEARNING

Data Mining Concepts

Statistics 202: Statistical Aspects of Data Mining

An Introduction to Data Mining

Example of DT Apply Model Example Learn Model Hunt s Alg. Measures of Node Impurity DT Examples and Characteristics. Classification.

Data Warehousing and Machine Learning

Data Mining. Chapter 1: Introduction. Adapted from materials by Jiawei Han, Micheline Kamber, and Jian Pei

Nesnelerin İnternetinde Veri Analizi

9. Conclusions. 9.1 Definition KDD

Chapter 3: Supervised Learning

CS423: Data Mining. Introduction. Jakramate Bootkrajang. Department of Computer Science Chiang Mai University

COMP 465: Data Mining Classification Basics

DATA MINING INTRO LECTURE. Introduction

DATA MINING LECTURE 1. Introduction

CSE4334/5334 Data Mining 4 Data and Data Preprocessing. Chengkai Li University of Texas at Arlington Fall 2017

CS Machine Learning

Outlier Detection Using Unsupervised and Semi-Supervised Technique on High Dimensional Data

Defining a Data Mining Task. CSE3212 Data Mining. What to be mined? Or the Approaches. Task-relevant Data. Estimation.

Analytical model A structure and process for analyzing a dataset. For example, a decision tree is a model for the classification of a dataset.

This tutorial has been prepared for computer science graduates to help them understand the basic-to-advanced concepts related to data mining.

Data mining overview. Data Mining. Data mining overview. Data mining overview. Data mining overview. Data mining overview 3/24/2014

Knowledge Discovery in Data Bases

Supervised and Unsupervised Learning (II)

Data Warehousing & Data Mining

Chapter 4: Mining Frequent Patterns, Associations and Correlations

Knowledge Discovery & Data Mining

ISM 50 - Business Information Systems

What is Data Mining. Venkat Chalasani SRA

DATA MINING LECTURE 1. Introduction

Introduction to Data Mining

Introduction to Data Mining S L I D E S B Y : S H R E E J A S W A L

Machine Learning. Decision Trees. Le Song /15-781, Spring Lecture 6, September 6, 2012 Based on slides from Eric Xing, CMU

DATA MINING INTRO LECTURE. Introduction

Knowledge Discovery and Data Mining

Association Rule Mining. Entscheidungsunterstützungssysteme

Mining Association Rules in Large Databases

Transcription:

COMP90049 Knowledge Technologies Data Mining (Lecture Set 3) 2017 Rao Kotagiri Department of Computing and Information Systems The Melbourne School of Engineering Some of slides are derived from Prof Vipin Kumar and modified, http://www-users.cs.umn.edu/~kumar/

What is (not) Data Mining? What is not Data Mining? data base or Web type quires such as Who is the president of USA in 2011? What is Data Mining? Data analysis leading to the observations such as smoking is a primary cause of increase in lung cancer incidents

Databases, Data Mining, Machine Learning and Statistics and their relationships Data mining exploits concepts from databases (scalability, semantics), AI (heuristics), Statistics (significance analysis, distributions, etc.), Machine learning (various clustering, classification, regression, etc.) and Pattern mining (image processing). Some of the goals of Data Mining are: to handle large, high dimensional and complex data (relational, time series, graphical, text, etc.) to discover interesting patterns that can help understand underlying process to discover knowledge that is useful/actionable Statistics and AI Data Mining Databases Machine Learning/ Pattern Recognition

Data Mining Tasks involve Prediction Methods (supervised learning methods) Use some variables to predict unknown or future values of other variables. Classification Regression Deviation Detection (outlier detection, anomaly detection) Description Methods (unsupervised learning) Find human-interpretable patterns that describe the data. Clustering Association Rule Discovery Sequential Pattern Discovery From [Fayyad, et.al.] Advances in Knowledge Discovery and Data Mining, 1996

What is classification? Given a collection of training data Each item of the data contains a set of attributes (features), at least one of the attributes is the class. The goal is to a model for class attributes (dependent variables) as a function of the values of other attributes (independent or decision variables). The discovered model (function) is used to predict the label of a previously unseen item. For determining how good the discovered model is a test set is used. Usually, the given data set is partitioned into two disjoint training and test sets. The training set is used to build the model and the test set is used to validate it by for example the % of the time the class label is correctly discovered.

10 10 COMP90049 Knowledge Technologies Classification Example categorical Tid Refund Marital Status categorical Taxable Income continuous Cheat class Refund Marital Status Taxable Income Cheat 1 Yes Single 125K No 2 No Married 100K No 3 No Single 70K No 4 Yes Married 120K No 5 No Divorced 95K Yes 6 No Married 60K No 7 Yes Divorced 220K No 8 No Single 85K Yes 9 No Married 75K No 10 No Single 90K Yes No Single 75K? Yes Married 50K? No Married 150K? Yes Divorced 90K? No Single 40K? No Married 80K? Training Set Learn Classifier Test Set Model

Classification: Application 1 Direct Marketing Goal: Reduce cost of mailing by targeting a set of consumers likely to buy a new cell-phone product. Approach: Use the data for a similar product introduced before. We know which customers decided to buy and which decided otherwise. This {buy, don t buy} decision forms the class attribute. Collect various demographic, lifestyle, and company-interaction related information about all such customers. Type of business, where they stay, how much they earn, etc. Use this information as input attributes to learn a classifier model. From [Berry & Linoff] Data Mining Techniques, 1997

Classification: Application 2 Fraud Detection Goal: Predict fraudulent cases in credit card transactions. Approach: o Use credit card transactions and the information on its accountholder as attributes. o When does a customer buy, what does he buy, how often he pays on time, etc. o Label past transactions as fraud or fair transactions. This forms the class attribute. o Learn a model for the class of the transactions. o Use this model to detect fraud by observing credit card transactions on an account.

Classification: Application 3 Sky Survey Cataloging Goal: To predict class (star or galaxy) of sky objects, especially visually faint ones, based on the telescopic survey images (from Palomar Observatory). Approach: 3000 images with 23,040 x 23,040 pixels per image. Segment the image. (Group similar pixels in an image) Measure image attributes (features) - 40 of them per object. Model the class based on these features. Success Story: Could find 16 new high red-shift quasars, some of the farthest objects that are difficult to find! From [Fayyad, et.al.] Advances in Knowledge Discovery and Data Mining, 1996

Classifying Galaxies Early Class: Stages of Formation Intermediate Courtesy: http://aps.umn.edu Attributes: Image features, Characteristics of light waves received, etc. Late Data Size: 72 million stars, 20 million galaxies Object Catalog: 9 GB Image Database: 150 GB

Clustering Definition Given a set of data points, each having a set of attributes, and a similarity measure among them, find clusters such that Data points in one cluster are more similar to one another. Data points in separate clusters are less similar to one another. Similarity Measures: Euclidean Distance if attributes are continuous. Other Problem-specific Measures.

Illustrating Clustering Euclidean Distance Based Clustering in 3-D space. Intracluster distances are are minimized Intercluster distances are are maximized

K-means Spectral clustering Path based method

Clustering: Application 1 Market Segmentation: Goal: subdivide a market into distinct subsets of customers where any subset may conceivably be selected as a market target to be reached with a distinct marketing strategy. Approach: Collect different attributes of customers based on their geographical and lifestyle related information. Find clusters of similar customers. Measure the clustering quality by observing buying patterns of customers in same cluster vs. those from different clusters.

Clustering: Application 2 Document Clustering: Goal: To find groups of documents that are similar to each other based on the important terms appearing in them. Approach: To identify frequently occurring terms in each document. Form a similarity measure based on the frequencies of different terms. Use it to cluster. Gain: Information Retrieval can utilize the clusters to relate a new document or search term to clustered documents.

Illustrating Document Clustering Clustering Points: 3204 Articles of Los Angeles Times. Similarity Measure: How many words are common in these documents (after some word filtering). Category Total Correctly Articles Placed Financial 555 364 Foreign 341 260 National 273 36 Metro 943 746 Sports 738 573 Entertainment 354 278

Clustering of S&P (Standard & Poor s) 500 Stock Data Observe Stock Movements every day. Clustering points: Stock-{UP/DOWN} Similarity Measure: Two points are more similar if the events described by them frequently happen together on the same day.

Association Rule Discovery: Definition Given a set of records each of which contain some number of items from a given collection; Produce dependency rules which will predict occurrence of an item based on occurrences of other items. Rules Rules Discovered: Discovered: {Milk} {Milk} --> --> {Coke} {Coke} Confidence Confidence for for the the rule rule = #transactions #transactions containing containing Milk Milk and and Coke Coke / / #transactions #transactions containing containing Milk Milk = ¾ Support Support for for the the rule rule = #transactions #transactions containing containing Milk Milk and and Coke Coke /# /# transactions transactions = 3/5 3/5 {Diaper, {Diaper, Milk} Milk} --> --> {Beer} {Beer} Confidence Confidence = #transactions #transactions containing containing Diaper, Diaper, Milk Milk and and Beer Beer / / #transactions #transactions containing containing Diaper Diaper and and Milk Milk = 2/3 2/3 Support Support for for the the rule rule = #transactions #transactions containing containing Diaper, Diaper, Milk Milk and and Beer/ Beer/ /# /# transactions transactions = 2/5 2/5

Association Rule Discovery: Application 1 Marketing and Sales Promotion: Let the rule discovered be {Bagels, } --> {Potato Chips} Potato Chips as consequent => Can be used to determine what should be done to boost its sales. Bagels in the antecedent => Can be used to see which products would be affected if the store discontinues selling bagels. Bagels in antecedent and Potato chips in consequent => Can be used to see what products should be sold with Bagels to promote sale of Potato chips! Bagels in antecedent and Potato chips in consequent => Can be used to co-locate Bagels and Potato Chips to further boost the sales of both products. Bagels in antecedent and Potato chips in consequent => The store may reduce the price of Bagels to actually increase the profit!

Association Rule Discovery: Application 2 Inventory Management: Goal: A consumer appliance repair company wants to anticipate the nature of repairs on its consumer products and keep the service vehicles equipped with right parts to reduce on number of visits to consumer households. Approach: Process the data on tools and parts required in previous repairs at different consumer locations and discover the co-occurrence patterns.

Sequential Pattern Discovery: Definition Given a set of objects, with each object associated with its own timeline of events, find rules that predict strong sequential dependencies among different events. Rules are formed by first discovering patterns. Event occurrences in the patterns are governed by timing constraints. (AB) (C) (D E) (AB) (C) (D E) <= T1 > T2 <= T3 <= T4

Sequential Pattern Discovery: Examples In telecommunications alarm logs, (Inverter_Problem) ( Excessive_Line_Current) (Rectifier_Alarm) (Fire_Alarm) In point-of-sale transaction sequences, Computer Bookstore: (Intro_To_Visual_C) (C++_Primer) (Perl_for_dummies,Tcl_Tk) Athletic Apparel Store: (Shoes) (Racket, Racketball) (Sports_Jacket)

Regression Predict a value of a given continuous valued variable based on the values of other variables, assuming a linear or nonlinear model of dependency. Greatly studied in statistics, neural network fields. Examples: Predicting sales amounts of new product based on advertising expenditure. Predicting wind velocities as a function of temperature, humidity, air pressure, etc. Time series prediction of stock market indices.

Deviation/Anomaly Detection Detect significant deviations from normal behavior Applications: Credit Card Fraud Detection Network Intrusion Detection Typical network traffic at University level may reach over 100 million connections per day

Challenges of Data Mining Scalability Dimensionality Complex and Heterogeneous Data Data Quality Data Ownership and Distribution Privacy Preservation Streaming Data Incremental learning How to combine domain knowledge with Data Mining Understandability of the models discovered