Prepared by: Mahmoud Rafeek Al-Farra

Slides:



Advertisements
Similar presentations
NEURAL NETWORKS Biological analogy
Advertisements

Graph-based cluster labeling using Growing Hierarchal SOM Mahmoud Rafeek Alfarra College Of Science & Technology The second International.
Artificial Neural Network
Data Mining Classification: Alternative Techniques
Prepared by: Mahmoud Rafeek Al-Farra College of Science & Technology Dep. Of Computer Science & IT BCs of Information Technology Data Mining
Application of Stacked Generalization to a Protein Localization Prediction Task Melissa K. Carroll, M.S. and Sung-Hyuk Cha, Ph.D. Pace University, School.
Machine Learning Neural Networks
Neural Networks Basic concepts ArchitectureOperation.
Neural Networks. R & G Chapter Feed-Forward Neural Networks otherwise known as The Multi-layer Perceptron or The Back-Propagation Neural Network.
Power Systems Application of Artificial Neural Networks. (ANN)  Introduction  Brief history.  Structure  How they work  Sample Simulations. (EasyNN)
Neural Networks Chapter Feed-Forward Neural Networks.
Text Classification: An Implementation Project Prerak Sanghvi Computer Science and Engineering Department State University of New York at Buffalo.
Artificial Neural Network An artificial neural network (ANN), usually called neural network (NN), is a mathematical model or computational model that is.
Chapter 5 Data mining : A Closer Look.
CHAPTER 12 ADVANCED INTELLIGENT SYSTEMS © 2005 Prentice Hall, Decision Support Systems and Intelligent Systems, 7th Edition, Turban, Aronson, and Liang.
Machine Learning. Learning agent Any other agent.
1 Neural Networks- a brief intro Dr Theodoros Manavis
Chapter 14: Artificial Intelligence Invitation to Computer Science, C++ Version, Third Edition.
Artificial Neural Networks (ANN). Output Y is 1 if at least two of the three inputs are equal to 1.
Introduction to Neural Networks. Neural Networks in the Brain Human brain “computes” in an entirely different way from conventional digital computers.
IE 585 Introduction to Neural Networks. 2 Modeling Continuum Unarticulated Wisdom Articulated Qualitative Models Theoretic (First Principles) Models Empirical.
Chapter 7 Neural Networks in Data Mining Automatic Model Building (Machine Learning) Artificial Intelligence.
Introduction to machine learning and data mining 1 iCSC2014, Juan López González, University of Oviedo Introduction to machine learning Juan López González.
PSY105 Neural Networks 2/5 2. “A universe of numbers”
Prepared by: Mahmoud Rafeek Al-Farra College of Science & Technology Dep. Of Computer Science & IT BCs of Information Technology Data Mining
Artificial Neural Networks An Introduction. What is a Neural Network? A human Brain A porpoise brain The brain in a living creature A computer program.
1 Machine Learning 1.Where does machine learning fit in computer science? 2.What is machine learning? 3.Where can machine learning be applied? 4.Should.
Bayesian Classification. Bayesian Classification: Why? A statistical classifier: performs probabilistic prediction, i.e., predicts class membership probabilities.
Artificial Neural Network Building Using WEKA Software
Neural Networks Steven Le. Overview Introduction Architectures Learning Techniques Advantages Applications.
Artificial Intelligence & Neural Network
METU Informatics Institute Min720 Pattern Classification with Bio-Medical Applications Lecture notes 9 Bayesian Belief Networks.
Prepared by: Mahmoud Rafeek Al-Farra College of Science & Technology Dep. Of Computer Science & IT BCs of Information Technology Data Mining
Prepared by: Mahmoud Rafeek Al-Farra
Mehdi Ghayoumi MSB rm 132 Ofc hr: Thur, a Machine Learning.
CS 478 – Tools for Machine Learning and Data Mining Perceptron.
Analysis of Classification Algorithms In Handwritten Digit Recognition Logan Helms Jon Daniele.
Lecture 5 Neural Control
COMP53311 Other Classification Models: Neural Network Prepared by Raymond Wong Some of the notes about Neural Network are borrowed from LW Chan’s notes.
Modelleerimine ja Juhtimine Tehisnärvivõrgudega Identification and Control with artificial neural networks.
Chapter 6. Classification and Prediction Classification by decision tree induction Bayesian classification Rule-based classification Classification by.
Perceptrons Michael J. Watts
Mini-course on Artificial Neural Networks and Bayesian Networks Michal Rosen-Zvi Mini-course on ANN and BN, The Multidisciplinary Brain Research center,
Neural Networks. Background - Neural Networks can be : Biological - Biological models Artificial - Artificial models - Desire to produce artificial systems.
Network Management Lecture 13. MACHINE LEARNING TECHNIQUES 2 Dr. Atiq Ahmed Université de Balouchistan.
Text Classification and Naïve Bayes Formalizing the Naïve Bayes Classifier.
Business Intelligence and Decision Support Systems (9 th Ed., Prentice Hall) Chapter 6: Artificial Neural Networks for Data Mining.
Classification of models
Neural Networks.
Fall 2004 Perceptron CS478 - Machine Learning.
Other Classification Models: Neural Network
Advanced information retreival
Prepared by: Mahmoud Rafeek Al-Farra
Learning Coordination Classifiers
Dr. Unnikrishnan P.C. Professor, EEE
with Daniel L. Silver, Ph.D. Christian Frey, BBA April 11-12, 2017
Data Mining Lecture 11.
بحث في موضوع : Neural Network
Artificial Neural Networks
Prof. Carolina Ruiz Department of Computer Science
Introduction to Artificial Intelligence and Soft Computing
Prepared by: Mahmoud Rafeek Al-Farra
Prepared by: Mahmoud Rafeek Al-Farra
Prepared by: Mahmoud Rafeek Al-Farra
network of simple neuron-like computing elements
The Naïve Bayes (NB) Classifier
A task of induction to find patterns
Chapter 14 February 26, 2004.
What is Artificial Intelligence?
Prof. Carolina Ruiz Department of Computer Science
Presentation transcript:

Prepared by: Mahmoud Rafeek Al-Farra College of Science & Technology Dep. Of Computer Science & IT BCs of Information Technology Data Mining Chapter 4_4: Classification Methods (Examples) Prepared by: Mahmoud Rafeek Al-Farra 2013 www.cst.ps/staff/mfarra

Course’s Out Lines Introduction Data Preparation and Preprocessing Data Representation Classification Methods Evaluation Clustering Methods Mid Exam Association Rules Knowledge Representation Special Case study : Document clustering Discussion of Case studies by students

Out Lines Naïve Bayesian Classifiers Artificial Neural Networks

Naïve Bayesian Classifiers A Bayes classifier is a simple probabilistic classifier based on applying Bayes' theorem (from Bayesian statistics) with strong (naive) independence assumptions. A more descriptive term for the underlying probability model would be "independent feature model".

What is ANN? An artificial neural network can be defined as a model of reasoning based on the human brain.

What is ANN? Analogy between biological and artificial neural networks

Artificial Neural Networks ANNs can be defined as a model of reasoning based on the human brain. A NN is a system of processing units, connections and weights associated with the connections which propagates activation from its input units to its output units, augmented by a learning rule.

Artificial Neural Networks ANN can be viewed as weighted directed graphs in which artificial neurons are nodes and directed edges labeled with weights are connections between neuron outputs and neuron inputs.

Simple computing element in ANN

Artificial Neural Networks The behavior of the network is determined by the combination of its architecture and its set of weights which is known as the learning of network.

Classification of ANN architectures

Feedforward neural network

Feedback neural network

Next … Evaluation

Thanks