Classification & Prediction

Slides:



Advertisements
Similar presentations
UNIT-2 Data Preprocessing LectureTopic ********************************************** Lecture-13Why preprocess the data? Lecture-14Data cleaning Lecture-15Data.
Advertisements

Ch2 Data Preprocessing part3 Dr. Bernard Chen Ph.D. University of Central Arkansas Fall 2009.
Data preprocessing before classification In Kennedy et al.: “Solving data mining problems”

Exploratory Data Mining and Data Preparation
Chapter 3 Pre-Mining. Content Introduction Proposed New Framework for a Conceptual Data Warehouse Selecting Missing Value Point Estimation Jackknife estimate.
Data Preprocessing.
Data Mining By Archana Ketkar.
Classification.
Peter Brezany and Christian Kloner Institut für Scientific Computing
Major Tasks in Data Preprocessing(Ref Chap 3) By Prof. Muhammad Amir Alam.
Introduction to machine learning
Data Mining : Introduction Chapter 1. 2 Index 1. What is Data Mining? 2. Data Mining Functionalities 1. Characterization and Discrimination 2. MIning.
Data Mining Chun-Hung Chou
Bayesian Networks. Male brain wiring Female brain wiring.
Basic Data Mining Technique
Data Reduction. 1.Overview 2.The Curse of Dimensionality 3.Data Sampling 4.Binning and Reduction of Cardinality.
Preprocessing for Data Mining Vikram Pudi IIIT Hyderabad.
Classification and Prediction Compiled By: Umair Yaqub Lecturer Govt. Murray College Sialkot Readings: Chapter 6 – Han and Kamber.
Bayesian Classification. Bayesian Classification: Why? A statistical classifier: performs probabilistic prediction, i.e., predicts class membership probabilities.
Data Reduction via Instance Selection Chapter 1. Background KDD  Nontrivial process of identifying valid, novel, potentially useful, and ultimately understandable.
Chapter 6 Classification and Prediction Dr. Bernard Chen Ph.D. University of Central Arkansas.
Data Preprocessing Compiled By: Umair Yaqub Lecturer Govt. Murray College Sialkot.
Classification and Prediction
Data Mining and Decision Support
1 Classification: predicts categorical class labels (discrete or nominal) classifies data (constructs a model) based on the training set and the values.
CS Machine Learning Instance Based Learning (Adapted from various sources)
BAYESIAN LEARNING. 2 Bayesian Classifiers Bayesian classifiers are statistical classifiers, and are based on Bayes theorem They can calculate the probability.
Waqas Haider Bangyal. Classification Vs Clustering In general, in classification you have a set of predefined classes and want to know which class a new.
By N.Gopinath AP/CSE.  A decision tree is a flowchart-like tree structure, where each internal node (nonleaf node) denotes a test on an attribute, each.
Data Mining – Introduction (contd…) Compiled By: Umair Yaqub Lecturer Govt. Murray College Sialkot.
Pattern Recognition Lecture 20: Data Mining 2 Dr. Richard Spillman Pacific Lutheran University.
Data Mining Functionalities
Data Mining, Machine Learning, Data Analysis, etc. scikit-learn
Machine Learning with Spark MLlib
Data Mining – Intro.
Data Mining ICCM
SNS COLLEGE OF TECHNOLOGY
Data Transformation: Normalization
Data Mining: Data Preparation
Prepared by: Mahmoud Rafeek Al-Farra
Noisy Data Noise: random error or variance in a measured variable.
Chapter 6 Classification and Prediction
Dipartimento di Ingegneria «Enzo Ferrari»,
Classification and Prediction
Instance Based Learning (Adapted from various sources)
Intro to Machine Learning
Data Mining II: Association Rule mining & Classification
Classification by Decision Tree Induction
Prepared by: Mahmoud Rafeek Al-Farra
Constrain Based Association Mining
Data Preprocessing Copyright, 1996 © Dale Carnegie & Associates, Inc.
Lecture 7: Data Preprocessing
Classification and Prediction
Data Preprocessing Copyright, 1996 © Dale Carnegie & Associates, Inc.
CSCI N317 Computation for Scientific Applications Unit Weka
Intro to Machine Learning
Data Mining, Machine Learning, Data Analysis, etc. scikit-learn
Data Transformations targeted at minimizing experimental variance
Data Preprocessing Copyright, 1996 © Dale Carnegie & Associates, Inc.
By Sandeep Patil, Department of Computer Engineering, I²IT
©Jiawei Han and Micheline Kamber
MIS2502: Data Analytics Classification Using Decision Trees
Bayesian Classification
Data Pre-processing Lecture Notes for Chapter 2
Data Preprocessing Copyright, 1996 © Dale Carnegie & Associates, Inc.
Data Preprocessing Copyright, 1996 © Dale Carnegie & Associates, Inc.
Tel Hope Foundation’s International Institute of Information Technology, (I²IT). Tel
Presentation transcript:

Classification & Prediction By N.Gopinath AP/CSE

What Is Classification? What Is Prediction? Case 1: A bank loans officer needs analysis of her data in order to learn which loan applicants are “safe” and which are “risky” for the bank. Case 2: A marketing manager at AllElectronics needs data analysis to help guess whether a customer with a given profile will buy a new computer.

Contd… In each of these examples, the data analysis task is classification, where a model or classifier is constructed to predict categorical labels, such as “safe” or “risky” for the loan application data; “yes” or “no” for the marketing data. These categories can be represented by discrete values, where the ordering among values has no meaning.

Contd… Suppose that the marketing manager would like to predict how much a given customer will spend during a sale at AllElectronics. This data analysis task is an example of numeric prediction, where the model constructed predicts a continuous-valued function, or ordered value, as opposed to a categorical label. This model is a predictor

How classification works??? classification is a two-step process, as shown for the loan application data in the given figure…

Contd…

Issues Regarding Classification and Prediction Data cleaning: This refers to the preprocessing of data in order to remove or reduce noise and the treatment of missing values (e.g., by replacing a missing value with the most commonly occurring value for that attribute, or with the most probable value based on statistics). Although most classification algorithms have some mechanisms for handling noisy or missing data, this step can help reduce confusion during learning.

Contd… Relevance analysis: Many of the attributes in the data may be redundant. Correlation analysis can be used to identify whether any two given attributes are statistically related. For example, a strong correlation between attributes A1 and A2 would suggest that one of the two could be removed from further analysis. A database may also contain irrelevant attributes. Attribute subset selection can be used in these cases to find a reduced set of attributes

Contd… Relevance analysis, in the form of correlation analysis and attribute subset selection, can be used to detect attributes that do not contribute to the classification or prediction task. The time spent on relevance analysis, when added to the time spent on learning from the resulting “reduced” attribute (or feature) subset, should be less than the time that would have been spent on learning from the original set of attributes. Hence, such analysis can help improve classification efficiency and scalability.

Contd… Data transformation and reduction: The data may be transformed by normalization, particularly when neural networks or methods involving distance measurements are used in the learning step. Normalization involves scaling all values for a given attribute so that they fall within a small specified range, such as -1.0 to 1.0, or 0.0 to 1.0.

Thank You…