MINE 432 Industrial Automation and Robotics

Size: px
Start display at page:

Download "MINE 432 Industrial Automation and Robotics"

Transcription

1 MINE 432 Industrial Automation and Robotics Part 3, Lecture 5 Overview of Artificial Neural Networks A. Farzanegan (Visiting Associate Professor) Fall 2014 Norman B. Keevil Institute of Mining Engineering

2 Today s Topics Introduction Biological neurons in humans Artificial Neuron Artificial Neural Networks Applications of ANNs MINE Industrial Automation and Robotics 2

3 Introduction

4 Introduction Artificial neural network (ANN) is a research subject in many scientific and engineering fields including machine learning, paralleled processing, modeling and simulation, image processing, etc. The idea of developing artificial neural networks was inspired by findings in neurosciences and biology about human brain and how it works MINE Industrial Automation and Robotics 4

5 Milestones in ANN Development 1943 McCulloch-Pitts neurons 1949 Hebb s law 1958 Perceptron (Rosenblatt) 1960 Adaline, better learning rule (Widrow, Huff) 1969 Limitations (Minsky, Papert) 1972 Kohonen nets, associative memory 1977 Brain State in a Box (Anderson) 1982 Hopfield net, constraint satisfaction 1985 ART (Carpenter, Grossfield) 1986 Backpropagation (Rumelhart, Hinton, McClelland) 1988 Neocognitron, character recognition (Fukushima) MINE Industrial Automation and Robotics 5

6 ANN as part of MATLAB Math, Statistics and Optimization Apps ANN Toolbox was added to MATLAB in 1992 MINE Industrial Automation and Robotics 6

7 Biological Neurons in Humans

8 Biological Neurons in Humans Most of neurons in human s body are located in brain. It is estimated that human s brain contains around 100 billions of interconnected neurons. Neurons can also be found in human spinal cord and peripheral nervous system. There are different types of neurons in humans including sensory neurons, brain and spinal cord neurons and motor neurons. MINE Industrial Automation and Robotics 8

9 Neurons Neurons gather and transmit electrochemical signals. They have the same characteristics and parts as other cells, but the electrochemical aspect lets them transmit signals over long distances (up to several feet or a few meters) and pass messages to each other. MINE Industrial Automation and Robotics 9

10 Neurons Network Neurons in brain are connected to each other at synapses. Signals are passed from one neuron to others through axons and terminal point synapse. MINE Industrial Automation and Robotics 10

11 Artificial Neurons

12 Artificial Neurons (Perceptron) An artificial neuron as the name suggests is artificial and process its input data much similar to a biological neuron such as human brain neuron cells. It is also known as perceptron. In brief, an artificial neuron is a piece of computer code which mathematically process numerical data and produces one or more output results. A biological neuron An artificial neuron MINE Industrial Automation and Robotics 12

13 Input Input Data Processing by An Artificial Neuron The weights represent how information being used by the network to solve a problem. x 1 w 1 x 2 x 3 w 2 w 3 z n wi x i 1 i ; y H ( z) Output y x n-1 x n w n-1 w n Activation function Weighted average MINE Industrial Automation and Robotics 13

14 Activation Functions Identity f(x) = x Binary step f(x) = 1 if x >= q f(x) = 0 otherwise Sigmoid f(x) = 1 / (1 + e -sx ) MINE Industrial Automation and Robotics 14

15 Artificial Neural Network (ANN)

16 Why Networks? A single disconnected artificial neuron cannot do much to solve real life problems Similar to human brain neurons, artificial neurons must be connected to each other in order to make a powerful computational network. A human brain can learn from new experiences and after learning can apply its knowledge to solve new problems. Similarly, an artificial neural network can be trained first to learn new rules or models from pre-defined examples, then it can be employed to solve new problems. ANN can learn supervised or unsupervised. MINE Industrial Automation and Robotics 16

17 Artificial Neural Network An artificial neural network is built by connecting several single artificial neurons in a specific structure to process input data. There are various types of ANN. The most classic one is a Multi-Layer Perceptron (MLP) in which a large number of artificial neurons or perceptron are highly interconnected in input, hidden and output layers. MINE Industrial Automation and Robotics 17

18 Types of ANNs Architecture Single layer feedforward Multilayer feedforward Recurrent Learning algorithm to determine connection weights Supervised Unsupervised Reinforcement Activation Function Function to compute output signal from input signal MINE Industrial Automation and Robotics 18

19 Training ANNs Given a set of input data, the goal of an ANN is to compute a correct output ( outputs). The output mainly depends on the weight of connections between artificial neurons and other internal mathematical parameters. x 1 x 2 x i w 1 w 2 y 1 w i If connection weights are not chosen accurately, then the ANN output will be incorrect or inaccurate. Therefore, an ANN needs to be trained and correct weights before it can be used for reliable predictions. x n w n y 2 MINE Industrial Automation and Robotics 19

20 Supervised Learning Learning is performed by presenting patterns with targets During learning, produced output is compared with the desired output The difference between both output is used to modify learning weights according to the learning algorithm Recognizing hand-written digits, pattern recognition, etc. Neural network models: perceptron, feed-forward, radial basis function, support vector machine. MINE Industrial Automation and Robotics 20

21 Unsupervised Learning Targets are not provided Appropriate for clustering task Find similar groups of documents in the web, content addressable memory, clustering. Neural network models: Kohonen, self organizing maps, Hopfield networks. MINE Industrial Automation and Robotics 21

22 Training ANN using Backpropagation The backpropagation algorithm learns (computes) the weights for a multilayer network. It employs a gradient descent to attempt to minimize the squared error between the network output values and the target values for these outputs. The backpropagation tries to minimize sum of the errors over all of the network output units E(w) = ½ (t kd o kd ) 2 d D and k outputs where outputs is the set of output units in the network, and t kd and o kd are the target and output values associated with the kth output unit and training example d. MINE Industrial Automation and Robotics 22

23 Applications of ANNs

24 Problem Types Solved by ANNs when we cannot formulate an algorithmic solution. when we can get lots of examples of the behavior we require. when we need to pick out the structure from existing data. Problem types suitable for ANN application: Storing and recalling patterns Classifying patterns Mapping inputs onto outputs Grouping similar patterns Finding solutions to constrained optimization problems MINE Industrial Automation and Robotics 24

25 Application of ANN in Mining As a new approach to model nonlinear relationships, artificial neural networks have found many applications in mining engineering such as blasting, drilling, rock mechanics and mineral processing, etc. In mining engineering, mostly, a MLP feedforward artificial neural network trained based on error back-propagation algorithm has been used to build a black-box model of relationship between one or several output variables and several inputs. MINE Industrial Automation and Robotics 25

26 ANN to Predict Flotation Efficiency Labidi et al., 2007 MINE Industrial Automation and Robotics 26

27 Defining Inputs and Outputs The first step in applying ANN approach is problem definition in terms of input and output variables and their ranges. Then, example data sets must be prepared for ANN training. The number of example data sets depends on input vector dimension. MINE Industrial Automation and Robotics 27

28 Optimizing ANN Architecture The optimal topologies of the network used to model the flotation stage was determined by a number of trial by varying the number of hidden layers, the number of neurons in each hidden layer, the type of function of neuron activation, the learning rate and momentum. The best neural network formed by two hidden layers each of which is constituted by 100 neurons. The activation function for both layers that gives the best result is the sigmoidal function MINE Industrial Automation and Robotics 28

29 ANN-Based Simulation of Flotation Process MINE Industrial Automation and Robotics 29

30 Simulated vs. Experimental Results MINE Industrial Automation and Robotics 30

31 Applying ANN in Blasting Optimization (Open Pit Mines) Monjezi et al., 2010 MINE Industrial Automation and Robotics 31

32 Optimized ANN Architecture MINE Industrial Automation and Robotics 32

33 ANN Predictions MINE Industrial Automation and Robotics 33

34 Blasting Optimization Based on ANN Simulation Fragmentation improvement: D 80 from 63 cm to 37 cm Flyrock reduction: from 110 m to 30 m MINE Industrial Automation and Robotics 34

35 Questions?

Course Objectives. This course gives a basic neural network architectures and learning rules.

Course Objectives. This course gives a basic neural network architectures and learning rules. Introduction Course Objectives This course gives a basic neural network architectures and learning rules. Emphasis is placed on the mathematical analysis of these networks, on methods of training them

More information

Application of Multi Layer Perceptron (MLP) for Shower Size Prediction

Application of Multi Layer Perceptron (MLP) for Shower Size Prediction Chapter 3 Application of Multi Layer Perceptron (MLP) for Shower Size Prediction 3.1 Basic considerations of the ANN Artificial Neural Network (ANN)s are non- parametric prediction tools that can be used

More information

Introduction to Machine Learning

Introduction to Machine Learning Introduction to Machine Learning Perceptron Barnabás Póczos Contents History of Artificial Neural Networks Definitions: Perceptron, Multi-Layer Perceptron Perceptron algorithm 2 Short History of Artificial

More information

NEURAL NETWORK BASED MAXIMUM POWER POINT TRACKING

NEURAL NETWORK BASED MAXIMUM POWER POINT TRACKING NEURAL NETWORK BASED MAXIMUM POWER POINT TRACKING 3.1 Introduction This chapter introduces concept of neural networks, it also deals with a novel approach to track the maximum power continuously from PV

More information

Artificial Neural Networks. Artificial Intelligence Santa Clara, 2016

Artificial Neural Networks. Artificial Intelligence Santa Clara, 2016 Artificial Neural Networks Artificial Intelligence Santa Clara, 2016 Simulate the functioning of the brain Can simulate actual neurons: Computational neuroscience Can introduce simplified neurons: Neural

More information

1 Introduction. w k x k (1.1)

1 Introduction. w k x k (1.1) Neural Smithing 1 Introduction Artificial neural networks are nonlinear mapping systems whose structure is loosely based on principles observed in the nervous systems of humans and animals. The major

More information

بسم اهلل الرحمن الرحيم. Introduction to Neural Networks

بسم اهلل الرحمن الرحيم. Introduction to Neural Networks Textbooks: بسم اهلل الرحمن الرحيم. Introduction to Neural Networks Martin T. Hagan, Howard B. Demuth, Mark Beale, Orlando De Jesús, Neural Network Design. 2014. Simon Haykin, Neural Networks and Learning

More information

Multiple-Layer Networks. and. Backpropagation Algorithms

Multiple-Layer Networks. and. Backpropagation Algorithms Multiple-Layer Networks and Algorithms Multiple-Layer Networks and Algorithms is the generalization of the Widrow-Hoff learning rule to multiple-layer networks and nonlinear differentiable transfer functions.

More information

Artificial Neural Networks

Artificial Neural Networks Artificial Neural Networks ABSTRACT Just as life attempts to understand itself better by modeling it, and in the process create something new, so Neural computing is an attempt at modeling the workings

More information

CHAPTER 6 BACK PROPAGATED ARTIFICIAL NEURAL NETWORK TRAINED ARHF

CHAPTER 6 BACK PROPAGATED ARTIFICIAL NEURAL NETWORK TRAINED ARHF 95 CHAPTER 6 BACK PROPAGATED ARTIFICIAL NEURAL NETWORK TRAINED ARHF 6.1 INTRODUCTION An artificial neural network (ANN) is an information processing model that is inspired by biological nervous systems

More information

Prediction of Rock Fragmentation in Open Pit Mines, using Neural Network Analysis

Prediction of Rock Fragmentation in Open Pit Mines, using Neural Network Analysis Prediction of Rock Fragmentation in Open Pit Mines, using Neural Network Analysis Kazem Oraee 1, Bahareh Asi 2 Loading and transport costs constitute up to 50% of the total operational costs in open pit

More information

Available online at ScienceDirect. Procedia Computer Science 85 (2016 )

Available online at   ScienceDirect. Procedia Computer Science 85 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 85 (2016 ) 263 270 International Conference on Computational Modeling and Security (CMS 2016) Proposing Solution to XOR

More information

Hybrid Optimized Back propagation Learning Algorithm For Multi-layer Perceptron

Hybrid Optimized Back propagation Learning Algorithm For Multi-layer Perceptron Hybrid Optimized Back propagation Learning Algorithm For Multi-layer Perceptron Arka Ghosh Purabi Das School of Information Technology, Bengal Engineering & Science University, Shibpur, Howrah, West Bengal,

More information

A comparative study of different feature sets for recognition of handwritten Arabic numerals using a Multi Layer Perceptron

A comparative study of different feature sets for recognition of handwritten Arabic numerals using a Multi Layer Perceptron Proc. National Conference on Recent Trends in Intelligent Computing (2006) 86-92 A comparative study of different feature sets for recognition of handwritten Arabic numerals using a Multi Layer Perceptron

More information

Analysis of Learning Paradigms and Prediction Accuracy using Artificial Neural Network Models

Analysis of Learning Paradigms and Prediction Accuracy using Artificial Neural Network Models Analysis of Learning Paradigms and Prediction Accuracy using Artificial Neural Network Models Poornashankar 1 and V.P. Pawar 2 Abstract: The proposed work is related to prediction of tumor growth through

More information

Computational Intelligence Introduction

Computational Intelligence Introduction Computational Intelligence Introduction Farzaneh Abdollahi Department of Electrical Engineering Amirkabir University of Technology Fall 2011 Farzaneh Abdollahi Neural Networks 1/21 Fuzzy Systems What are

More information

Figure 1. Artificial Neural Network structure. B. Spiking Neural Networks Spiking Neural networks (SNNs) fall into the third generation of neural netw

Figure 1. Artificial Neural Network structure. B. Spiking Neural Networks Spiking Neural networks (SNNs) fall into the third generation of neural netw Review Analysis of Pattern Recognition by Neural Network Soni Chaturvedi A.A.Khurshid Meftah Boudjelal Electronics & Comm Engg Electronics & Comm Engg Dept. of Computer Science P.I.E.T, Nagpur RCOEM, Nagpur

More information

Artificial Intelligence Elman Backpropagation Computing Models for Predicting Shelf Life of. Processed Cheese

Artificial Intelligence Elman Backpropagation Computing Models for Predicting Shelf Life of. Processed Cheese Vol.4/No.1 B (01) INTERNETWORKING INDONESIA JOURNAL 3 Artificial Intelligence Elman Backpropagation Computing Models for Predicting Shelf Life of Processed Cheese Sumit Goyal and Gyanendra Kumar Goyal

More information

Thursday, December 11, 8:00am 10:00am rooms: pending

Thursday, December 11, 8:00am 10:00am rooms: pending Final Exam Thursday, December 11, 8:00am 10:00am rooms: pending No books, no questions, work alone, everything seen in class. CS 561, Sessions 24-25 1 Artificial Neural Networks and AI Artificial Neural

More information

COMPUTATONAL INTELLIGENCE

COMPUTATONAL INTELLIGENCE COMPUTATONAL INTELLIGENCE October 2011 November 2011 Siegfried Nijssen partially based on slides by Uzay Kaymak Leiden Institute of Advanced Computer Science e-mail: snijssen@liacs.nl Katholieke Universiteit

More information

Sonia Sharma ECE Department, University Institute of Engineering and Technology, MDU, Rohtak, India. Fig.1.Neuron and its connection

Sonia Sharma ECE Department, University Institute of Engineering and Technology, MDU, Rohtak, India. Fig.1.Neuron and its connection NEUROCOMPUTATION FOR MICROSTRIP ANTENNA Sonia Sharma ECE Department, University Institute of Engineering and Technology, MDU, Rohtak, India Abstract: A Neural Network is a powerful computational tool that

More information

Research Article Adaptive Forming of the Beam Pattern of Microstrip Antenna with the Use of an Artificial Neural Network

Research Article Adaptive Forming of the Beam Pattern of Microstrip Antenna with the Use of an Artificial Neural Network International Journal of Antennas and Propagation Volume 212, Article ID 93573, 13 pages doi:1.1155/212/93573 Research Article Adaptive Forming of the Beam Pattern of Microstrip Antenna with the Use of

More information

Random Administrivia. In CMC 306 on Monday for LISP lab

Random Administrivia. In CMC 306 on Monday for LISP lab Random Administrivia In CMC 306 on Monday for LISP lab Artificial Intelligence: Introduction What IS artificial intelligence? Examples of intelligent behavior: Definitions of AI There are as many definitions

More information

Outline. Artificial Neural Network Importance of ANN Application of ANN is Sports Science

Outline. Artificial Neural Network Importance of ANN Application of ANN is Sports Science Advances of Neural Networks in Sports Science Aviroop Dutt Mazumder 13 th Aug, 2010 COSC - 460 Sports Science Outline Artificial Neural Network Importance of ANN Application of ANN is Sports Science Modeling

More information

MAGNT Research Report (ISSN ) Vol.6(1). PP , Controlling Cost and Time of Construction Projects Using Neural Network

MAGNT Research Report (ISSN ) Vol.6(1). PP , Controlling Cost and Time of Construction Projects Using Neural Network Controlling Cost and Time of Construction Projects Using Neural Network Li Ping Lo Faculty of Computer Science and Engineering Beijing University China Abstract In order to achieve optimized management,

More information

NEURAL NETWORK DEMODULATOR FOR QUADRATURE AMPLITUDE MODULATION (QAM)

NEURAL NETWORK DEMODULATOR FOR QUADRATURE AMPLITUDE MODULATION (QAM) NEURAL NETWORK DEMODULATOR FOR QUADRATURE AMPLITUDE MODULATION (QAM) Ahmed Nasraden Milad M. Aziz M Rahmadwati Artificial neural network (ANN) is one of the most advanced technology fields, which allows

More information

ARTIFICIAL NEURAL NETWORK BASED CLASSIFICATION FOR MONOBLOCK CENTRIFUGAL PUMP USING WAVELET ANALYSIS

ARTIFICIAL NEURAL NETWORK BASED CLASSIFICATION FOR MONOBLOCK CENTRIFUGAL PUMP USING WAVELET ANALYSIS International Journal of Mechanical Engineering and Technology (IJMET), ISSN 0976 6340(Print) ISSN 0976 6359(Online) Volume 1 Number 1, July - Aug (2010), pp. 28-37 IAEME, http://www.iaeme.com/ijmet.html

More information

Constant False Alarm Rate Detection of Radar Signals with Artificial Neural Networks

Constant False Alarm Rate Detection of Radar Signals with Artificial Neural Networks Högskolan i Skövde Department of Computer Science Constant False Alarm Rate Detection of Radar Signals with Artificial Neural Networks Mirko Kück mirko@ida.his.se Final 6 October, 1996 Submitted by Mirko

More information

Harmonic detection by using different artificial neural network topologies

Harmonic detection by using different artificial neural network topologies Harmonic detection by using different artificial neural network topologies J.L. Flores Garrido y P. Salmerón Revuelta Department of Electrical Engineering E. P. S., Huelva University Ctra de Palos de la

More information

Neural Network Classifier and Filtering for EEG Detection in Brain-Computer Interface Device

Neural Network Classifier and Filtering for EEG Detection in Brain-Computer Interface Device Neural Network Classifier and Filtering for EEG Detection in Brain-Computer Interface Device Mr. CHOI NANG SO Email: cnso@excite.com Prof. J GODFREY LUCAS Email: jglucas@optusnet.com.au SCHOOL OF MECHATRONICS,

More information

INTELLIGENT DECISION AND CONTROL INTELLIGENT SYSTEMS

INTELLIGENT DECISION AND CONTROL INTELLIGENT SYSTEMS INTELLIGENT DECISION AND CONTROL INTELLIGENT SYSTEMS João Miguel da Costa Sousa Universidade de Lisboa, Instituto Superior Técnico CenterofIntelligentSystems, IDMEC, LAETA, Portugal jmsousa@tecnico.ulisboa.pt

More information

CHAPTER 4 LINK ADAPTATION USING NEURAL NETWORK

CHAPTER 4 LINK ADAPTATION USING NEURAL NETWORK CHAPTER 4 LINK ADAPTATION USING NEURAL NETWORK 4.1 INTRODUCTION For accurate system level simulator performance, link level modeling and prediction [103] must be reliable and fast so as to improve the

More information

Back Propagation Algorithm: The Best Algorithm Among the Multi-layer Perceptron Algorithm

Back Propagation Algorithm: The Best Algorithm Among the Multi-layer Perceptron Algorithm 378 IJCSNS International Journal of Computer Science and Network Security, VOL.9 No.4, April 2009 Back Propagation Algorithm: The Best Algorithm Among the Multi-layer Perceptron Algorithm 1 Mutasem khalil

More information

A Neural Network Approach for the calculation of Resonant frequency of a circular microstrip antenna

A Neural Network Approach for the calculation of Resonant frequency of a circular microstrip antenna A Neural Network Approach for the calculation of Resonant frequency of a circular microstrip antenna K. Kumar, Senior Lecturer, Dept. of ECE, Pondicherry Engineering College, Pondicherry e-mail: kumarpec95@yahoo.co.in

More information

A Comprehensive Study of Artificial Neural Networks

A Comprehensive Study of Artificial Neural Networks A Comprehensive Study of Artificial Neural Networks Md Anis Alam 1, Bintul Zehra 2,Neha Agrawal 3 12 3 Research Scholars, Department of Electronics & Communication Engineering, Al-Falah School of Engineering

More information

AN IMPROVED NEURAL NETWORK-BASED DECODER SCHEME FOR SYSTEMATIC CONVOLUTIONAL CODE. A Thesis by. Andrew J. Zerngast

AN IMPROVED NEURAL NETWORK-BASED DECODER SCHEME FOR SYSTEMATIC CONVOLUTIONAL CODE. A Thesis by. Andrew J. Zerngast AN IMPROVED NEURAL NETWORK-BASED DECODER SCHEME FOR SYSTEMATIC CONVOLUTIONAL CODE A Thesis by Andrew J. Zerngast Bachelor of Science, Wichita State University, 2008 Submitted to the Department of Electrical

More information

Use of Artificial Neural Network for Land Use Land Cover Classification of UAV Acquired Imagery

Use of Artificial Neural Network for Land Use Land Cover Classification of UAV Acquired Imagery Use of Artificial Neural Network for Land Use Land Cover Classification of UAV Acquired Imagery THESIS SUBMITTED TO Symbiosis Institute of Geoinformatics FOR PARTIAL FULFILLMENT OF THE M. Sc. DEGREE By

More information

ECG QRS Enhancement Using Artificial Neural Network

ECG QRS Enhancement Using Artificial Neural Network 6 ECG QRS Enhancement Using Artificial Neural Network ECG QRS Enhancement Using Artificial Neural Network Sambita Dalal, Laxmikanta Sahoo Department of Applied Electronics and Instrumentation Engineering

More information

CSCE 315: Programming Studio

CSCE 315: Programming Studio CSCE 315: Programming Studio Introduction to Artificial Intelligence Textbook Definitions Thinking like humans What is Intelligence Acting like humans Thinking rationally Acting rationally However, it

More information

Current Harmonic Estimation in Power Transmission Lines Using Multi-layer Perceptron Learning Strategies

Current Harmonic Estimation in Power Transmission Lines Using Multi-layer Perceptron Learning Strategies Journal of Electrical Engineering 5 (27) 29-23 doi:.7265/2328-2223/27.5. D DAVID PUBLISHING Current Harmonic Estimation in Power Transmission Lines Using Multi-layer Patrice Wira and Thien Minh Nguyen

More information

Mapping EDFA Noise Figure and Gain Flatness Over the Power Mask Using Neural Networks

Mapping EDFA Noise Figure and Gain Flatness Over the Power Mask Using Neural Networks 128 Mapping EDFA Noise Figure and Gain Flatness Over the Power Mask Using Neural Networks Carmelo J. A. Bastos-Filho, Erick de A. Barboza Programa de Pós-Graduação em Engenharia de Sistemas, Universidade

More information

The Hamming Code Performance Analysis using RBF Neural Network

The Hamming Code Performance Analysis using RBF Neural Network , 22-24 October, 2014, San Francisco, USA The Hamming Code Performance Analysis using RBF Neural Network Omid Haddadi, Zahra Abbasi, and Hossein TooToonchy, Member, IAENG Abstract In this paper the Hamming

More information

Transient stability Assessment using Artificial Neural Network Considering Fault Location

Transient stability Assessment using Artificial Neural Network Considering Fault Location Vol.6 No., 200 مجلد 6, العدد, 200 Proc. st International Conf. Energy, Power and Control Basrah University, Basrah, Iraq 0 Nov. to 2 Dec. 200 Transient stability Assessment using Artificial Neural Network

More information

CALIFORNIA STATE UNIVERSITY, NORTHRIDGE POWER SYSTEM VOLTAGE STABILITY ANALYSIS AND ASSESSMENT USING ARTIFICIAL NEURAL NETWORK

CALIFORNIA STATE UNIVERSITY, NORTHRIDGE POWER SYSTEM VOLTAGE STABILITY ANALYSIS AND ASSESSMENT USING ARTIFICIAL NEURAL NETWORK CALIFORNIA STATE UNIVERSITY, NORTHRIDGE POWER SYSTEM VOLTAGE STABILITY ANALYSIS AND ASSESSMENT USING ARTIFICIAL NEURAL NETWORK A graduate project submitted in partial fulfillment of the requirements For

More information

COMPARATIVE STUDY ON ARTIFICIAL NEURAL NETWORK ALGORITHMS

COMPARATIVE STUDY ON ARTIFICIAL NEURAL NETWORK ALGORITHMS International Journal of Latest Trends in Engineering and Technology Special Issue SACAIM 2016, pp. 448-453 e-issn:2278-621x COMPARATIVE STUDY ON ARTIFICIAL NEURAL NETWORK ALGORITHMS Neenu Joseph 1, Melody

More information

Transactions on Information and Communications Technologies vol 1, 1993 WIT Press, ISSN

Transactions on Information and Communications Technologies vol 1, 1993 WIT Press,   ISSN Combining multi-layer perceptrons with heuristics for reliable control chart pattern classification D.T. Pham & E. Oztemel Intelligent Systems Research Laboratory, School of Electrical, Electronic and

More information

Perspectives on Intelligent System Techniques used in Data Mining Poonam Verma

Perspectives on Intelligent System Techniques used in Data Mining Poonam Verma IJSRD - International Journal for Scientific Research & Development Sp. Issue - Data Mining 2015 ISSN (online): 2321-0613 Perspectives on Intelligent System Techniques used in Data Mining Poonam Verma

More information

Using of Artificial Neural Networks to Recognize the Noisy Accidents Patterns of Nuclear Research Reactors

Using of Artificial Neural Networks to Recognize the Noisy Accidents Patterns of Nuclear Research Reactors Int. J. Advanced Networking and Applications 1053 Using of Artificial Neural Networks to Recognize the Noisy Accidents Patterns of Nuclear Research Reactors Eng. Abdelfattah A. Ahmed Atomic Energy Authority,

More information

POLITEHNICA UNIVERSITY TIMISOARA

POLITEHNICA UNIVERSITY TIMISOARA POLITEHNICA UNIVERSITY TIMISOARA ELECTRONICS AND TELECOMMUNICATIONS FACULTY NEURAL NETWORK APPLICATIONS FOR RADIOCOVERAGE STUDIES IN MOBILE COMMUNICATION SYSTEMS Ph. D. Thesis Eng. Ileana Popescu Supervisors:

More information

Adaptive Multi-layer Neural Network Receiver Architectures for Pattern Classification of Respective Wavelet Images

Adaptive Multi-layer Neural Network Receiver Architectures for Pattern Classification of Respective Wavelet Images Adaptive Multi-layer Neural Network Receiver Architectures for Pattern Classification of Respective Wavelet Images Pythagoras Karampiperis 1, and Nikos Manouselis 2 1 Dynamic Systems and Simulation Laboratory

More information

Image Finder Mobile Application Based on Neural Networks

Image Finder Mobile Application Based on Neural Networks Image Finder Mobile Application Based on Neural Networks Nabil M. Hewahi Department of Computer Science, College of Information Technology, University of Bahrain, Sakheer P.O. Box 32038, Kingdom of Bahrain

More information

Automatic Speech Recognition (CS753)

Automatic Speech Recognition (CS753) Automatic Speech Recognition (CS753) Lecture 9: Brief Introduction to Neural Networks Instructor: Preethi Jyothi Feb 2, 2017 Final Project Landscape Tabla bol transcription Music Genre Classification Audio

More information

Enhanced MLP Input-Output Mapping for Degraded Pattern Recognition

Enhanced MLP Input-Output Mapping for Degraded Pattern Recognition Enhanced MLP Input-Output Mapping for Degraded Pattern Recognition Shigueo Nomura and José Ricardo Gonçalves Manzan Faculty of Electrical Engineering, Federal University of Uberlândia, Uberlândia, MG,

More information

Systolic modular VLSI Architecture for Multi-Model Neural Network Implementation +

Systolic modular VLSI Architecture for Multi-Model Neural Network Implementation + Systolic modular VLSI Architecture for Multi-Model Neural Network Implementation + J.M. Moreno *, J. Madrenas, J. Cabestany Departament d'enginyeria Electrònica Universitat Politècnica de Catalunya Barcelona,

More information

Generating an appropriate sound for a video using WaveNet.

Generating an appropriate sound for a video using WaveNet. Australian National University College of Engineering and Computer Science Master of Computing Generating an appropriate sound for a video using WaveNet. COMP 8715 Individual Computing Project Taku Ueki

More information

Behavior Emergence in Autonomous Robot Control by Means of Feedforward and Recurrent Neural Networks

Behavior Emergence in Autonomous Robot Control by Means of Feedforward and Recurrent Neural Networks Behavior Emergence in Autonomous Robot Control by Means of Feedforward and Recurrent Neural Networks Stanislav Slušný, Petra Vidnerová, Roman Neruda Abstract We study the emergence of intelligent behavior

More information

Outline. What is AI? A brief history of AI State of the art

Outline. What is AI? A brief history of AI State of the art Introduction to AI Outline What is AI? A brief history of AI State of the art What is AI? AI is a branch of CS with connections to psychology, linguistics, economics, Goal make artificial systems solve

More information

Efficient Control of DC Servomotor Systems Using Backpropagation Neural Networks

Efficient Control of DC Servomotor Systems Using Backpropagation Neural Networks Georgia Southern University Digital Commons@Georgia Southern Electronic Theses & Dissertations COGS- Jack N. Averitt College of Graduate Studies Spring 2011 Efficient Control of DC Servomotor Systems Using

More information

Binary Neural Network and Its Implementation with 16 Mb RRAM Macro Chip

Binary Neural Network and Its Implementation with 16 Mb RRAM Macro Chip Binary Neural Network and Its Implementation with 16 Mb RRAM Macro Chip Assistant Professor of Electrical Engineering and Computer Engineering shimengy@asu.edu http://faculty.engineering.asu.edu/shimengyu/

More information

Approximation a One-Dimensional Functions by Using Multilayer Perceptron and Radial Basis Function Networks

Approximation a One-Dimensional Functions by Using Multilayer Perceptron and Radial Basis Function Networks Approximation a One-Dimensional Functions by Using Multilayer Perceptron and Radial Basis Function Networks Huda Dheyauldeen Najeeb Department of public relations College of Media, University of Al Iraqia,

More information

SMARTPHONE SENSOR BASED GESTURE RECOGNITION LIBRARY

SMARTPHONE SENSOR BASED GESTURE RECOGNITION LIBRARY SMARTPHONE SENSOR BASED GESTURE RECOGNITION LIBRARY Sidhesh Badrinarayan 1, Saurabh Abhale 2 1,2 Department of Information Technology, Pune Institute of Computer Technology, Pune, India ABSTRACT: Gestures

More information

Abstract. Most OCR systems decompose the process into several stages:

Abstract. Most OCR systems decompose the process into several stages: Artificial Neural Network Based On Optical Character Recognition Sameeksha Barve Computer Science Department Jawaharlal Institute of Technology, Khargone (M.P) Abstract The recognition of optical characters

More information

PERFORMANCE PARAMETERS CONTROL OF WOUND ROTOR INDUCTION MOTOR USING ANN CONTROLLER

PERFORMANCE PARAMETERS CONTROL OF WOUND ROTOR INDUCTION MOTOR USING ANN CONTROLLER PERFORMANCE PARAMETERS CONTROL OF WOUND ROTOR INDUCTION MOTOR USING ANN CONTROLLER 1 A.MOHAMED IBRAHIM, 2 M.PREMKUMAR, 3 T.R.SUMITHIRA, 4 D.SATHISHKUMAR 1,2,4 Assistant professor in Department of Electrical

More information

A Neural Network Facial Expression Recognition System using Unsupervised Local Processing

A Neural Network Facial Expression Recognition System using Unsupervised Local Processing A Neural Network Facial Expression Recognition System using Unsupervised Local Processing Leonardo Franco Alessandro Treves Cognitive Neuroscience Sector - SISSA 2-4 Via Beirut, Trieste, 34014 Italy lfranco@sissa.it,

More information

An Introduction to Artificial Intelligence, Machine Learning, and Neural networks. Carola F. Berger

An Introduction to Artificial Intelligence, Machine Learning, and Neural networks. Carola F. Berger An Introduction to Artificial Intelligence, Machine Learning, and Neural networks ATA58 Carola F. Berger Outline What is Artificial Intelligence (AI)? What does it do? How does it work? Will there be a

More information

Lecture 1 What is AI?

Lecture 1 What is AI? Lecture 1 What is AI? EECS 348 Intro to Artificial Intelligence Doug Downey With material adapted from Oren Etzioni (UW) and Stuart Russell (UC Berkeley) Outline 1) What is AI: The Course 2) What is AI:

More information

Artificial Neural Network based Mobile Robot Navigation

Artificial Neural Network based Mobile Robot Navigation Artificial Neural Network based Mobile Robot Navigation István Engedy Budapest University of Technology and Economics, Department of Measurement and Information Systems, Magyar tudósok körútja 2. H-1117,

More information

An Hybrid MLP-SVM Handwritten Digit Recognizer

An Hybrid MLP-SVM Handwritten Digit Recognizer An Hybrid MLP-SVM Handwritten Digit Recognizer A. Bellili ½ ¾ M. Gilloux ¾ P. Gallinari ½ ½ LIP6, Université Pierre et Marie Curie ¾ La Poste 4, Place Jussieu 10, rue de l Ile Mabon, BP 86334 75252 Paris

More information

Prediction of airblast loads in complex environments using artificial neural networks

Prediction of airblast loads in complex environments using artificial neural networks Structures Under Shock and Impact IX 269 Prediction of airblast loads in complex environments using artificial neural networks A. M. Remennikov 1 & P. A. Mendis 2 1 School of Civil, Mining and Environmental

More information

CMSC 372 Artificial Intelligence. Fall Administrivia

CMSC 372 Artificial Intelligence. Fall Administrivia CMSC 372 Artificial Intelligence Fall 2017 Administrivia Instructor: Deepak Kumar Lectures: Mon& Wed 10:10a to 11:30a Labs: Fridays 10:10a to 11:30a Pre requisites: CMSC B206 or H106 and CMSC B231 or permission

More information

Forecasting Exchange Rates using Neural Neworks

Forecasting Exchange Rates using Neural Neworks International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 6, Number 1 (2016), pp. 35-44 International Research Publications House http://www. irphouse.com Forecasting Exchange

More information

IBM SPSS Neural Networks

IBM SPSS Neural Networks IBM Software IBM SPSS Neural Networks 20 IBM SPSS Neural Networks New tools for building predictive models Highlights Explore subtle or hidden patterns in your data. Build better-performing models No programming

More information

Prediction of Missing PMU Measurement using Artificial Neural Network

Prediction of Missing PMU Measurement using Artificial Neural Network Prediction of Missing PMU Measurement using Artificial Neural Network Gaurav Khare, SN Singh, Abheejeet Mohapatra Department of Electrical Engineering Indian Institute of Technology Kanpur Kanpur-208016,

More information

Durham E-Theses. The hardware implementation of an articial neural network using stochastic pulse rate encoding principles. Glover, John Sigsworth

Durham E-Theses. The hardware implementation of an articial neural network using stochastic pulse rate encoding principles. Glover, John Sigsworth Durham E-Theses The hardware implementation of an articial neural network using stochastic pulse rate encoding principles Glover, John Sigsworth How to cite: Glover, John Sigsworth (1995) The hardware

More information

Behaviour Patterns Evolution on Individual and Group Level. Stanislav Slušný, Roman Neruda, Petra Vidnerová. CIMMACS 07, December 14, Tenerife

Behaviour Patterns Evolution on Individual and Group Level. Stanislav Slušný, Roman Neruda, Petra Vidnerová. CIMMACS 07, December 14, Tenerife Behaviour Patterns Evolution on Individual and Group Level Stanislav Slušný, Roman Neruda, Petra Vidnerová Department of Theoretical Computer Science Institute of Computer Science Academy of Science of

More information

Time and Cost Analysis for Highway Road Construction Project Using Artificial Neural Networks

Time and Cost Analysis for Highway Road Construction Project Using Artificial Neural Networks KICEM Journal of Construction Engineering and Project Management Online ISSN 33-958 www.jcepm.org http://dx.doi.org/.66/jcepm.5.5..6 Time and Cost Analysis for Highway Road Construction Project Using Artificial

More information

Neural Network Application in Robotics

Neural Network Application in Robotics Neural Network Application in Robotics Development of Autonomous Aero-Robot and its Applications to Safety and Disaster Prevention with the help of neural network Sharique Hayat 1, R. N. Mall 2 1. M.Tech.

More information

Geometric Neurodynamical Classifiers Applied to Breast Cancer Detection. Tijana T. Ivancevic

Geometric Neurodynamical Classifiers Applied to Breast Cancer Detection. Tijana T. Ivancevic Geometric Neurodynamical Classifiers Applied to Breast Cancer Detection Tijana T. Ivancevic Thesis submitted for the Degree of Doctor of Philosophy in Applied Mathematics at The University of Adelaide

More information

A Simple Design and Implementation of Reconfigurable Neural Networks

A Simple Design and Implementation of Reconfigurable Neural Networks A Simple Design and Implementation of Reconfigurable Neural Networks Hazem M. El-Bakry, and Nikos Mastorakis Abstract There are some problems in hardware implementation of digital combinational circuits.

More information

A COMPARISON OF ARTIFICIAL NEURAL NETWORKS AND OTHER STATISTICAL METHODS FOR ROTATING MACHINE

A COMPARISON OF ARTIFICIAL NEURAL NETWORKS AND OTHER STATISTICAL METHODS FOR ROTATING MACHINE A COMPARISON OF ARTIFICIAL NEURAL NETWORKS AND OTHER STATISTICAL METHODS FOR ROTATING MACHINE CONDITION CLASSIFICATION A. C. McCormick and A. K. Nandi Abstract Statistical estimates of vibration signals

More information

CROP RECOMMENDATION SYSTEM USING NEURAL NETWORKS

CROP RECOMMENDATION SYSTEM USING NEURAL NETWORKS CROP RECOMMENDATION SYSTEM USING NEURAL NETWORKS Tanmay Banavlikar 1, Aqsa Mahir 2, Mayuresh Budukh 3, Soham Dhodapkar 4 1234Dept. of Computer Engineering, NBN Sinhgad School of Engineering ---------------------------------------------------------------------***---------------------------------------------------------------------

More information

Keywords : Simulated Neural Networks, Shelf Life, ANN, Elman, Self - Organizing. GJCST Classification : I.2

Keywords : Simulated Neural Networks, Shelf Life, ANN, Elman, Self - Organizing. GJCST Classification : I.2 Global Journal of Computer Science and Technology Volume 11 Issue 14 Version 1.0 August 011 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals Inc. (USA) Online

More information

ECE 599/692 Deep Learning Lecture 19 Beyond BP and CNN

ECE 599/692 Deep Learning Lecture 19 Beyond BP and CNN ECE 599/692 Deep Learning Lecture 19 Beyond BP and CNN Hairong Qi, Gonzalez Family Professor Electrical Engineering and Computer Science University of Tennessee, Knoxville http://www.eecs.utk.edu/faculty/qi

More information

MLP for Adaptive Postprocessing Block-Coded Images

MLP for Adaptive Postprocessing Block-Coded Images 1450 IEEE TRANSACTIONS ON CIRCUITS AND SYSTEMS FOR VIDEO TECHNOLOGY, VOL. 10, NO. 8, DECEMBER 2000 MLP for Adaptive Postprocessing Block-Coded Images Guoping Qiu, Member, IEEE Abstract A new technique

More information

Contents 1 Introduction Optical Character Recognition Systems Soft Computing Techniques for Optical Character Recognition Systems

Contents 1 Introduction Optical Character Recognition Systems Soft Computing Techniques for Optical Character Recognition Systems Contents 1 Introduction.... 1 1.1 Organization of the Monograph.... 1 1.2 Notation.... 3 1.3 State of Art.... 4 1.4 Research Issues and Challenges.... 5 1.5 Figures.... 5 1.6 MATLAB OCR Toolbox.... 5 References....

More information

Neural Networks as a Tool for Product Manufacturing Innovation in Africa

Neural Networks as a Tool for Product Manufacturing Innovation in Africa Neural Networks as a Tool for Product Manufacturing Innovation in Africa Ima Okon Essiet, Ado Dan-Isa Dept. of Electrical Engineering Bayero University, Kano Nigeria imaessiet82@gmail. com ado_ danisa@yahoo.com

More information

Lecture 1 What is AI?

Lecture 1 What is AI? Lecture 1 What is AI? CSE 473 Artificial Intelligence Oren Etzioni 1 AI as Science What are the most fundamental scientific questions? 2 Goals of this Course To teach you the main ideas of AI. Give you

More information

Prediction of Influence of Doping of NaNO 3 on the Solid Phase Thermal Decomposition of Bitumen using neural networks

Prediction of Influence of Doping of NaNO 3 on the Solid Phase Thermal Decomposition of Bitumen using neural networks Prediction of Influence of Doping of NaNO 3 on the Solid Phase Thermal Decomposition of Bitumen using neural networks Foad Qassemi Department of Civil and Survey Engineering Kerman Graduate University

More information

Demystifying Machine Learning

Demystifying Machine Learning Demystifying Machine Learning By Simon Agius Muscat Software Engineer with RightBrain PyMalta, 19/07/18 http://www.rightbrain.com.mt 0. Talk outline 1. Explain the reasoning behind my talk 2. Defining

More information

CRITERIA OF ARTIFICIAL NEURAL NETWORK IN RECONITION OF PATTERN AND IMAGE AND ITS INFORMATION PROCESSING METHODOLOGY

CRITERIA OF ARTIFICIAL NEURAL NETWORK IN RECONITION OF PATTERN AND IMAGE AND ITS INFORMATION PROCESSING METHODOLOGY CRITERIA OF ARTIFICIAL NEURAL NETWORK IN RECONITION OF PATTERN AND IMAGE AND ITS INFORMATION PROCESSING METHODOLOGY Khagesh Kumar Dewangan 1, Naresh Kumar Dewangan 2, Purushottam Patel 3 1,2, Student Bachelor

More information

Artificial Neural Networks approach to the voltage sag classification

Artificial Neural Networks approach to the voltage sag classification Artificial Neural Networks approach to the voltage sag classification F. Ortiz, A. Ortiz, M. Mañana, C. J. Renedo, F. Delgado, L. I. Eguíluz Department of Electrical and Energy Engineering E.T.S.I.I.,

More information

Agent Smith: An Application of Neural Networks to Directing Intelligent Agents in a Game Environment

Agent Smith: An Application of Neural Networks to Directing Intelligent Agents in a Game Environment Agent Smith: An Application of Neural Networks to Directing Intelligent Agents in a Game Environment Jonathan Wolf Tyler Haugen Dr. Antonette Logar South Dakota School of Mines and Technology Math and

More information

Multilayer Perceptron: NSGA II for a New Multi-Objective Learning Method for Training and Model Complexity

Multilayer Perceptron: NSGA II for a New Multi-Objective Learning Method for Training and Model Complexity Multilayer Perceptron: NSGA II for a New Multi-Objective Learning Method for Training and Model Complexity Kaoutar Senhaji 1*, Hassan Ramchoun 1, Mohamed Ettaouil 1 1*, 1 Modeling and Scientific Computing

More information

Performance Improvement of Contactless Distance Sensors using Neural Network

Performance Improvement of Contactless Distance Sensors using Neural Network Performance Improvement of Contactless Distance Sensors using Neural Network R. ABDUBRANI and S. S. N. ALHADY School of Electrical and Electronic Engineering Universiti Sains Malaysia Engineering Campus,

More information

CSE 473 Artificial Intelligence (AI) Outline

CSE 473 Artificial Intelligence (AI) Outline CSE 473 Artificial Intelligence (AI) Rajesh Rao (Instructor) Ravi Kiran (TA) http://www.cs.washington.edu/473 UW CSE AI faculty Goals of this course Logistics What is AI? Examples Challenges Outline 2

More information

A.I in Automotive? Why and When.

A.I in Automotive? Why and When. A.I in Automotive? Why and When. AGENDA 01 02 03 04 Definitions A.I? A.I in automotive Now? Next big A.I breakthrough in Automotive 01 DEFINITIONS DEFINITIONS Artificial Intelligence Artificial Intelligence:

More information

ES 492: SCIENCE IN THE MOVIES

ES 492: SCIENCE IN THE MOVIES UNIVERSITY OF SOUTH ALABAMA ES 492: SCIENCE IN THE MOVIES LECTURE 5: ROBOTICS AND AI PRESENTER: HANNAH BECTON TODAY'S AGENDA 1. Robotics and Real-Time Systems 2. Reacting to the environment around them

More information

Comparison of Various Neural Network Algorithms Used for Location Estimation in Wireless Communication

Comparison of Various Neural Network Algorithms Used for Location Estimation in Wireless Communication Comparison of Various Neural Network Algorithms Used for Location Estimation in Wireless Communication * Shashank Mishra 1, G.S. Tripathi M.Tech. Student, Dept. of Electronics and Communication Engineering,

More information

International Journal of Advance Engineering and Research Development SURVEY IN ARTIFICIAL NEURAL NETWORKS IN MYOCARDIAL INFARCTION

International Journal of Advance Engineering and Research Development SURVEY IN ARTIFICIAL NEURAL NETWORKS IN MYOCARDIAL INFARCTION Scientific Journal of Impact Factor (SJIF): 5.71 International Journal of Advance Engineering and Research Development Volume 5, Issue 03, March -2018 e-issn (O): 2348-4470 p-issn (P): 2348-6406 SURVEY

More information

FACE RECOGNITION USING NEURAL NETWORKS

FACE RECOGNITION USING NEURAL NETWORKS Int. J. Elec&Electr.Eng&Telecoms. 2014 Vinoda Yaragatti and Bhaskar B, 2014 Research Paper ISSN 2319 2518 www.ijeetc.com Vol. 3, No. 3, July 2014 2014 IJEETC. All Rights Reserved FACE RECOGNITION USING

More information