Abalone Age Prediction using Artificial Neural Network

Size: px
Start display at page:

Download "Abalone Age Prediction using Artificial Neural Network"

Transcription

1 IOSR Journal o Computer Engineering (IOSR-JCE) e-issn: ,p-ISSN: , Volume 8, Issue 5, Ver. II (Sept - Oct. 206), PP Abalone Age Prediction using Artiicial Neural Network Khadija Jabeen, K.Ishthaq Ahamed 2 (M.tech Scholar, CSE Department, G.Pulla Reddy College o Engineering and Technology, Kurnool, Andhra Pradesh, India) 2 (Faculty o CSE, CSE Department, G.Pulla Reddy College o Engineering and Technology, Kurnool, Andhra Pradesh, India) Abstract: Artiicial Neural Networks are the intelligent computation systems that can be used to solve various challenging problems such as compression, optimization, classiication, pattern recognition and prediction. In this paper, a eed orward multi layer perceptron (MLP) network is used to predict the age o abalone on the basis o various physical attributes. Levenberg-Marquardt back propagation training algorithm (trainlm) is used to train the neural network. The results o experiment show that by increasing the number o hidden layers o the MLP network, the calculated error rate keeps decreasing or each corresponding target value. Thus, the declining error rate indicates that MLP network with Levenberg-Marquardt based Backpropagation algorithm acts as best tool in predicting the age o abalone. Keywords: Abalone age, prediction, Artiicial Neural Network, MLP network, Levenberg-Marquardt Backpropagation algorithm I. Introduction Over the last ew years neural networks have seen an explosion o interest and are being successully applied across an extraordinary range o problem domains, in areas as diverse as inance, medicine, engineering, geology and physics []. Their approach to solve the problems is dierent when compared to conventional computers. Neural networks process inormation in a way similar to human brain. This property allows the ANN to distribute the knowledge in the entire network structure; there is no element with speciic stored inormation [2].They are composed o small interconnected processing elements known as neurons that work in parallel to solve a particular problem. The most important eature o these networks is their adaptive nature, where learning by example replaces programming in solving problems [5]. Artiicial Neural Networks (ANN) can create their own organization or representation o the inormation they receive during learning time. Below ig- represents a simple neural network structure: X W Input X 2 Y Y=(W i X i +b) W 2 OUTPUT X N- W N- b Fig. : Neural Network Structure The structure o neural networks has three types o layers: an input layer that receives data rom external sources, hidden layer that perorms computation on the basis o unction provided, and an output layer that generates output based on the input provided [3]. They have capability to extract the required concept rom complex data. In terms o inormation provided or analysis, a trained neural network acts as an expert system. Neural networks can be used to learn and identiy correlated patterns between the input data and corresponding target values. These networks are interesting rom a statistical perspective due to their potential use in prediction problems. [5] A network, an activation rule, and a learning rule are the three major components o a neural network. The network contains set o nodes that are connected via directed links. A numeric activation is associated with each node in the network at time t. The state o the network at a particular time is represented by the overall pattern o activation [6]. Each node in the network ollows activation rule to update its activation level. Learning DOI: / Page

2 rule is used to know how the weights on connections should be modiied. The processing elements o neural network are generally arranged into a sequence o layers with several connections between them. II. Neural Network Architecture The structure o a neural network should be an easy and simpliied one. The artiicial neural networks are mainly classiied in to two types: eedorward and eedback neural networks. A eedorward neural network is also known as Multi-Layer Perceptron (MLP) network. In this network, the signal travels only in one direction where as in a eedback network the signal travels in both the directions as loops [4]. 2. Feedorward Neural Network: (MLP) The Multi-Layer Perceptron or eed-orward neural network is perhaps the most popular network architecture in use today. The units each perorm a biased weighted sum o their inputs and pass this activation level through an activation unction to produce their output, and the units are arranged in a layered eed orward topology. The network thus has a simple interpretation as a orm o input-output model, with the weights and thresholds (biases) the ree parameters o the model. [] A multi-layer perceptron has two distinctive eatures:. A nonlinear activation unction is included in each neuron model o the network. 2. A high degree o connectivity is exhibited by the network. Generally, it may not be suicient to use one neuron, even with many inputs. We might need ive to ten neurons that operate in parallel, which is called as a layer. Multi-layer eed orward networks are characterized by directed layered graphs. They consist o an input layer, one or more hidden layers and an output layer. On a layer-by-layer basis, the input signal moves through the network in orward direction [7 & 8]. These networks can be trained through variants o backpropagation algorithm in a supervised manner. The ollowing ig-2 represents Multi-Layer Perceptron architecture: Inputs Layer o S neurons P W, n a P 2 b P 3 : b 2 : : P r n s a s W S,R Fig. 2: Multi-Layer Perceptron Architecture The layer consists o summing units, activation unctions, bias b, weight matrix W, and output vector a. Each component o the input P is connected to each neuron through weight matrix W. Each neuron has an activation unction, bias b s and an output a s. The number o inputs to a layer can be dierent rom the number o neurons. The neurons in a layer can have dierent activation unctions by combining two o networks each network can produce some outputs. The MLP network is one kind o a amily o Feed-orward neural networks, where data lows into the network through the input layer, passes through the hidden layer and inally lows out o the network through the output layer, without any direct data-low loop. The network thereore has a simple interpretation as a orm o input output model, with network weights as ree parameters. [2] III. Levenberg-Marquardt Back propagation Algorithm Levenberg-Marquardt algorithm was developed by Kenneth Levenberg and Donald Marquardt in order to provide numerical solution to the problem o minimizing a non-linear unction [9]. Due to its ast and stable convergence, in artiicial neural networks it is used to train small-and medium size problems. DOI: / Page b s n 2 a = (Wp+b) a 2

3 There are many methods to train a neural network such as steepest descent algorithm. Many enhancements were made to steepest descent algorithm but due to its slow convergence it proved to be an ineicient algorithm [9]. This slow convergence o steepest descent method can be improved drastically by Gauss-Newton algorithm as it provides aster convergence and inds proper step sizes or each direction [9]. But this improvement cannot be expected in many o the cases as Gauss-Newton algorithm is divergent in nature. The Levenberg-Marquardt algorithm (trainlm) combines the steepest descent method and Gauss- Newton algorithm. Levenberg-Marquardt algorithm inherits the advantage o speed and stability rom Gauss- Newton algorithm and steepest descent method respectively [9]. Levenberg-Marquardt is considered as one o most eicient training algorithms because it perorms a combined training process. This algorithm was designed to approach second-order training speed without computing Hessian matrix. [0] Levenberg-Marquardt algorithm switches between steepest descent and Gauss-Newton algorithm during the process o training as it combines best o both the algorithms. I the scalar is zero, it is Newton s method using approximate Hessian matrix. I is large, it becomes gradient descent with small step size. Newton s method is more accurate and aster near error minimum [0]. So ater each successul step decreased i.e; reduction in perormance unction and it is increased only when tentative step increases the perormance unction. The backpropagation algorithm can be outlined as ollows []: Step 0: Small random values are used to initialize weights and learning rate. Step : When stopping condition is alse perorm the steps 2 to 9. Step 2: For each training pair perorm the steps 3 to 8. Step 3: The input signal x i (i= to n) rom each input unit is sent to the hidden unit. Step 4: To calculate net input, each hidden unit z j (j= to p) sums its weighted input signals. is By applying activation unctions over z inj the output o the hidden unit can be calculated as: and then the output rom the hidden unit is sent to input o output layer units. Step 5: Calculate net input or each output unit y k (k= to m): and then activation unction is applied to calculate the output signal. Step 6: A target pattern related to input training pattern is received by output unit y k and the error correction term is calculated as: Based on calculated error term, the change in weights and bias can be updated as: ; Step 7: Every hidden unit z j sums its delta inputs rom output units as ollows: To calculate the error term gets multiplied with derivative o ( as ollows: Based on the computed value o, the change in weights and bias are updated as: ; Step 8: The bias and weights are updated by each output unit as ollows: The bias and weights updated by each hidden unit are as ollows: + DOI: / Page

4 Step 9: Check or stopping condition. It may be number o epochs reached or the actual output matching nearer to target output. IV. Experimental results Abalone are a very common type o sea snails that are considered to be a delicacy and popular in jewellery making. Their lie span ranges rom to 29 years. Its age can be determined by counting number o layers in its shell. This is a time consuming process as it requires to cut the sample o the shell, stain it and count number o rings through a microscope. Instead we used a statistical approach o neural networks to predict the age o abalone. Here we predict the age o abalones based on the given physical characteristics. The multi-layer eedorward neural network (MLP) is ed with 8 input variables and its corresponding target sequence. Ater giving the input/target sequence to the network it is trained through Levenberg- Marquardt backpropagation algorithm. Each time the network is trained, the number o hidden layers are increased rom 2 to 0. In each cycle, the error values are calculated by subtracting obtained output values rom the given target values or records. + Fig. 3: Declining error value against increasing hidden layers or dierent target values In Figure 3(a), or the target record 5 with two hidden layers, the error value is But as the hidden layers increase rom 2 to 2 the error value alls to This decline in the error values indicates that obtained In Figure 3(b), or the target record 0 with two hidden layers, the error value is But as the hidden layers increase rom 2 to 0 the error value alls to This decline in the error values indicates that obtained DOI: / Page

5 In Figure 3(c), or the target record 0 with two hidden layers, the error value is But as the hidden layers increase rom 2 to 0 the error value alls to This decline in the error values indicates that obtained In Figure 3(d), or the target record 7 with two hidden layers, the error value is But as the hidden layers increase rom 2 to 2 the error value alls to This decline in the error values indicates that obtained Similarly in Figure 3(e), or the target record 9 with two hidden layers, the error value is.26. But as the hidden layers increase rom 2 to 2 the error value alls to This decline in the error values indicates that obtained V. Conclusion And Future Work In this paper we have presented a Multi-Layer Perceptron Network which is trained through Levenberg-Marquardt backpropagation algorithm or predicting the age o abalone. The number o hidden layers in the network are increased in order to match the target and obtained output values. From the above experimental results, we observe that as the number o hidden layers increases in neural network architecture, the error values or each target record decreases gradually which results in accurate perormance o this network to predict the age o abalone. Thus, rom the results it is concluded that Multi-Layer Perceptron Network is one o the eective tools in abalone age prediction. As part o uture work, the error rate or each target record can be reduced in less number o epochs by making enhancements to the training algorithm. Reerences [] A.B.Karthick Anand Babu, 202. Design and Development o Artiicial Neural Network Based Tamil Unicode Symbols Identiication System. IJCSI International Journal o Computer Science Issues, Vol. 9, Issue, No 2, January 202. [2] S. Haykin, Neural networks: A comprehensive oundation (2nd Edn., New Jersey: Prentice-Hall, 999). [3] Ms.Sonali, B.Maind and Ms.Priyanka Wankar, Research paper on basic o artiicial neural network, International journal on recent and innovation trends in computing and communication, Vol 2 Issue IJRITCC January 204. [4] Jitender Singh Yadav, Mohit Yadav, Ankit Jain, Artiicial Neural Network. International Journal O Scientiic Research And Education, Volume, Issue 6, Pages 08-8, 203, ISSN (e): [5] M. H. Hassoun, Fundamentals o artiicial neural networks (Cambridge: MIT Press, 995). [6] Lippmann,R. P. An Introduction to computing with neural nets (IEEE ASSP Magazine, 987) [7] Bengio, y., Frasconi, P., Gori, M., & G.Soda. (993). Recurrent neural networks or adaptive temporal processing. In Proceedings o the 6th Italian workshop on parallel architectures and neural networks wirn93 (pp. 85-7). Vietri (Italy): World Scientiic Pub. [8] Qin He., (999). Neural Network and Its Application in IR. University o Illinois at Urbana-Champaign Spring. [9] B. M. Wilamowski and H. Yu, Improved computation or Levenberg Marquardt training, IEEE Transactions on Neural Networks, 2, , 200. [0] Howard Demuth Mark Beale, Neural Network Toolbox For Use with MATLAB. User s Guide, Version 4. [] SN Sivanandam, SN Deepa, Principles o Sot Computing (Wiley India, 2007). DOI: / Page

A Comprehensive Study on Various Neural Network Frameworks

A Comprehensive Study on Various Neural Network Frameworks A Comprehensive Study on Various Neural Network Frameworks Khadija Jaeen, K.Ishthaq Ahamed 2 CSE Department, G.ulla Reddy, College o Engineering and Technology, Kurnool 2 CSE Department, G.ulla Reddy College

More information

RIMT IET, Mandi Gobindgarh Abstract - In this paper, analysis the speed of sending message in Healthcare standard 7 with the use of back

RIMT IET, Mandi Gobindgarh Abstract - In this paper, analysis the speed of sending message in Healthcare standard 7 with the use of back Global Journal of Computer Science and Technology Neural & Artificial Intelligence Volume 13 Issue 3 Version 1.0 Year 2013 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global

More information

Image Compression: An Artificial Neural Network Approach

Image Compression: An Artificial Neural Network Approach Image Compression: An Artificial Neural Network Approach Anjana B 1, Mrs Shreeja R 2 1 Department of Computer Science and Engineering, Calicut University, Kuttippuram 2 Department of Computer Science and

More information

CHAPTER VI BACK PROPAGATION ALGORITHM

CHAPTER VI BACK PROPAGATION ALGORITHM 6.1 Introduction CHAPTER VI BACK PROPAGATION ALGORITHM In the previous chapter, we analysed that multiple layer perceptrons are effectively applied to handle tricky problems if trained with a vastly accepted

More information

Facial Expression Recognition based on Affine Moment Invariants

Facial Expression Recognition based on Affine Moment Invariants IJCSI International Journal o Computer Science Issues, Vol. 9, Issue 6, No, November 0 ISSN (Online): 694-084 www.ijcsi.org 388 Facial Expression Recognition based on Aine Moment Invariants Renuka Londhe

More information

A neural network that classifies glass either as window or non-window depending on the glass chemistry.

A neural network that classifies glass either as window or non-window depending on the glass chemistry. A neural network that classifies glass either as window or non-window depending on the glass chemistry. Djaber Maouche Department of Electrical Electronic Engineering Cukurova University Adana, Turkey

More information

An Algorithm For Training Multilayer Perceptron (MLP) For Image Reconstruction Using Neural Network Without Overfitting.

An Algorithm For Training Multilayer Perceptron (MLP) For Image Reconstruction Using Neural Network Without Overfitting. An Algorithm For Training Multilayer Perceptron (MLP) For Image Reconstruction Using Neural Network Without Overfitting. Mohammad Mahmudul Alam Mia, Shovasis Kumar Biswas, Monalisa Chowdhury Urmi, Abubakar

More information

International Research Journal of Computer Science (IRJCS) ISSN: Issue 09, Volume 4 (September 2017)

International Research Journal of Computer Science (IRJCS) ISSN: Issue 09, Volume 4 (September 2017) APPLICATION OF LRN AND BPNN USING TEMPORAL BACKPROPAGATION LEARNING FOR PREDICTION OF DISPLACEMENT Talvinder Singh, Munish Kumar C-DAC, Noida, India talvinder.grewaal@gmail.com,munishkumar@cdac.in Manuscript

More information

PERFORMANCE COMPARISON OF BACK PROPAGATION AND RADIAL BASIS FUNCTION WITH MOVING AVERAGE FILTERING AND WAVELET DENOISING ON FETAL ECG EXTRACTION

PERFORMANCE COMPARISON OF BACK PROPAGATION AND RADIAL BASIS FUNCTION WITH MOVING AVERAGE FILTERING AND WAVELET DENOISING ON FETAL ECG EXTRACTION I J C T A, 9(28) 2016, pp. 431-437 International Science Press PERFORMANCE COMPARISON OF BACK PROPAGATION AND RADIAL BASIS FUNCTION WITH MOVING AVERAGE FILTERING AND WAVELET DENOISING ON FETAL ECG EXTRACTION

More information

Review on Methods of Selecting Number of Hidden Nodes in Artificial Neural Network

Review on Methods of Selecting Number of Hidden Nodes in Artificial Neural Network Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 3, Issue. 11, November 2014,

More information

Assignment # 5. Farrukh Jabeen Due Date: November 2, Neural Networks: Backpropation

Assignment # 5. Farrukh Jabeen Due Date: November 2, Neural Networks: Backpropation Farrukh Jabeen Due Date: November 2, 2009. Neural Networks: Backpropation Assignment # 5 The "Backpropagation" method is one of the most popular methods of "learning" by a neural network. Read the class

More information

Channel Performance Improvement through FF and RBF Neural Network based Equalization

Channel Performance Improvement through FF and RBF Neural Network based Equalization Channel Performance Improvement through FF and RBF Neural Network based Equalization Manish Mahajan 1, Deepak Pancholi 2, A.C. Tiwari 3 Research Scholar 1, Asst. Professor 2, Professor 3 Lakshmi Narain

More information

Climate Precipitation Prediction by Neural Network

Climate Precipitation Prediction by Neural Network Journal of Mathematics and System Science 5 (205) 207-23 doi: 0.7265/259-529/205.05.005 D DAVID PUBLISHING Juliana Aparecida Anochi, Haroldo Fraga de Campos Velho 2. Applied Computing Graduate Program,

More information

Use of Artificial Neural Networks to Investigate the Surface Roughness in CNC Milling Machine

Use of Artificial Neural Networks to Investigate the Surface Roughness in CNC Milling Machine Use of Artificial Neural Networks to Investigate the Surface Roughness in CNC Milling Machine M. Vijay Kumar Reddy 1 1 Department of Mechanical Engineering, Annamacharya Institute of Technology and Sciences,

More information

Neural Network Classifier for Isolated Character Recognition

Neural Network Classifier for Isolated Character Recognition Neural Network Classifier for Isolated Character Recognition 1 Ruby Mehta, 2 Ravneet Kaur 1 M.Tech (CSE), Guru Nanak Dev University, Amritsar (Punjab), India 2 M.Tech Scholar, Computer Science & Engineering

More information

INVESTIGATING DATA MINING BY ARTIFICIAL NEURAL NETWORK: A CASE OF REAL ESTATE PROPERTY EVALUATION

INVESTIGATING DATA MINING BY ARTIFICIAL NEURAL NETWORK: A CASE OF REAL ESTATE PROPERTY EVALUATION http:// INVESTIGATING DATA MINING BY ARTIFICIAL NEURAL NETWORK: A CASE OF REAL ESTATE PROPERTY EVALUATION 1 Rajat Pradhan, 2 Satish Kumar 1,2 Dept. of Electronics & Communication Engineering, A.S.E.T.,

More information

CS485/685 Computer Vision Spring 2012 Dr. George Bebis Programming Assignment 2 Due Date: 3/27/2012

CS485/685 Computer Vision Spring 2012 Dr. George Bebis Programming Assignment 2 Due Date: 3/27/2012 CS8/68 Computer Vision Spring 0 Dr. George Bebis Programming Assignment Due Date: /7/0 In this assignment, you will implement an algorithm or normalizing ace image using SVD. Face normalization is a required

More information

Character Recognition Using Convolutional Neural Networks

Character Recognition Using Convolutional Neural Networks Character Recognition Using Convolutional Neural Networks David Bouchain Seminar Statistical Learning Theory University of Ulm, Germany Institute for Neural Information Processing Winter 2006/2007 Abstract

More information

ANN-Based Modeling for Load and Main Steam Pressure Characteristics of a 600MW Supercritical Power Generating Unit

ANN-Based Modeling for Load and Main Steam Pressure Characteristics of a 600MW Supercritical Power Generating Unit ANN-Based Modeling for Load and Main Steam Pressure Characteristics of a 600MW Supercritical Power Generating Unit Liangyu Ma, Zhiyuan Gao Automation Department, School of Control and Computer Engineering

More information

Research on Evaluation Method of Product Style Semantics Based on Neural Network

Research on Evaluation Method of Product Style Semantics Based on Neural Network Research Journal of Applied Sciences, Engineering and Technology 6(23): 4330-4335, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: September 28, 2012 Accepted:

More information

THE NEURAL NETWORKS: APPLICATION AND OPTIMIZATION APPLICATION OF LEVENBERG-MARQUARDT ALGORITHM FOR TIFINAGH CHARACTER RECOGNITION

THE NEURAL NETWORKS: APPLICATION AND OPTIMIZATION APPLICATION OF LEVENBERG-MARQUARDT ALGORITHM FOR TIFINAGH CHARACTER RECOGNITION International Journal of Science, Environment and Technology, Vol. 2, No 5, 2013, 779 786 ISSN 2278-3687 (O) THE NEURAL NETWORKS: APPLICATION AND OPTIMIZATION APPLICATION OF LEVENBERG-MARQUARDT ALGORITHM

More information

Adaptive self-learning controller design for feedrate maximisation of machining process

Adaptive self-learning controller design for feedrate maximisation of machining process o Achievements in Materials and Manuacturing Engineering VOLUME 31 ISSUE 2 December 28 Adaptive sel-learning controller design or eedrate maximisation o machining process F. Cus, U. Zuperl*, E. Kiker,

More information

Yuki Osada Andrew Cannon

Yuki Osada Andrew Cannon Yuki Osada Andrew Cannon 1 Humans are an intelligent species One feature is the ability to learn The ability to learn comes down to the brain The brain learns from experience Research shows that the brain

More information

Neural Networks. CE-725: Statistical Pattern Recognition Sharif University of Technology Spring Soleymani

Neural Networks. CE-725: Statistical Pattern Recognition Sharif University of Technology Spring Soleymani Neural Networks CE-725: Statistical Pattern Recognition Sharif University of Technology Spring 2013 Soleymani Outline Biological and artificial neural networks Feed-forward neural networks Single layer

More information

Cursive Handwriting Recognition System Using Feature Extraction and Artificial Neural Network

Cursive Handwriting Recognition System Using Feature Extraction and Artificial Neural Network Cursive Handwriting Recognition System Using Feature Extraction and Artificial Neural Network Utkarsh Dwivedi 1, Pranjal Rajput 2, Manish Kumar Sharma 3 1UG Scholar, Dept. of CSE, GCET, Greater Noida,

More information

Center for Automation and Autonomous Complex Systems. Computer Science Department, Tulane University. New Orleans, LA June 5, 1991.

Center for Automation and Autonomous Complex Systems. Computer Science Department, Tulane University. New Orleans, LA June 5, 1991. Two-phase Backpropagation George M. Georgiou Cris Koutsougeras Center for Automation and Autonomous Complex Systems Computer Science Department, Tulane University New Orleans, LA 70118 June 5, 1991 Abstract

More information

Jaroslav Moravec. Object recognition using 3D convolutional neural networks

Jaroslav Moravec. Object recognition using 3D convolutional neural networks BACHELOR THESIS Jaroslav Moravec Object recognition using 3D convolutional neural networks Department o Sotware Engineering Supervisor o the bachelor thesis: Study programme: Study branch: RNDr. Jakub

More information

ROBUST FACE DETECTION UNDER CHALLENGES OF ROTATION, POSE AND OCCLUSION

ROBUST FACE DETECTION UNDER CHALLENGES OF ROTATION, POSE AND OCCLUSION ROBUST FACE DETECTION UNDER CHALLENGES OF ROTATION, POSE AND OCCLUSION Phuong-Trinh Pham-Ngoc, Quang-Linh Huynh Department o Biomedical Engineering, Faculty o Applied Science, Hochiminh University o Technology,

More information

A *69>H>N6 #DJGC6A DG C<>C::G>C<,8>:C8:H /DA 'D 2:6G, ()-"&"3 -"(' ( +-" " " % '.+ % ' -0(+$,

A *69>H>N6 #DJGC6A DG C<>C::G>C<,8>:C8:H /DA 'D 2:6G, ()-&3 -(' ( +-   % '.+ % ' -0(+$, The structure is a very important aspect in neural network design, it is not only impossible to determine an optimal structure for a given problem, it is even impossible to prove that a given structure

More information

Lecture 17: Neural Networks and Deep Learning. Instructor: Saravanan Thirumuruganathan

Lecture 17: Neural Networks and Deep Learning. Instructor: Saravanan Thirumuruganathan Lecture 17: Neural Networks and Deep Learning Instructor: Saravanan Thirumuruganathan Outline Perceptron Neural Networks Deep Learning Convolutional Neural Networks Recurrent Neural Networks Auto Encoders

More information

Automated Modelization of Dynamic Systems

Automated Modelization of Dynamic Systems Automated Modelization o Dynamic Systems Ivan Perl, Aleksandr Penskoi ITMO University Saint-Petersburg, Russia ivan.perl, aleksandr.penskoi@corp.imo.ru Abstract Nowadays, dierent kinds o modelling settled

More information

MODELLING OF ARTIFICIAL NEURAL NETWORK CONTROLLER FOR ELECTRIC DRIVE WITH LINEAR TORQUE LOAD FUNCTION

MODELLING OF ARTIFICIAL NEURAL NETWORK CONTROLLER FOR ELECTRIC DRIVE WITH LINEAR TORQUE LOAD FUNCTION MODELLING OF ARTIFICIAL NEURAL NETWORK CONTROLLER FOR ELECTRIC DRIVE WITH LINEAR TORQUE LOAD FUNCTION Janis Greivulis, Anatoly Levchenkov, Mikhail Gorobetz Riga Technical University, Faculty of Electrical

More information

Neighbourhood Operations

Neighbourhood Operations Neighbourhood Operations Neighbourhood operations simply operate on a larger neighbourhood o piels than point operations Origin Neighbourhoods are mostly a rectangle around a central piel Any size rectangle

More information

Measuring the Vulnerability of Interconnection. Networks in Embedded Systems. University of Massachusetts, Amherst, MA 01003

Measuring the Vulnerability of Interconnection. Networks in Embedded Systems. University of Massachusetts, Amherst, MA 01003 Measuring the Vulnerability o Interconnection Networks in Embedded Systems V. Lakamraju, Z. Koren, I. Koren, and C. M. Krishna Department o Electrical and Computer Engineering University o Massachusetts,

More information

A Study of Low-resolution Safety Helmet Image Recognition Combining Statistical Features with Artificial Neural Network

A Study of Low-resolution Safety Helmet Image Recognition Combining Statistical Features with Artificial Neural Network A Study o Low-resolution Saety Helmet Image Recognition Combining Statistical Features with Artiicial Neural Network Xinhua JIANG, Heru XUE *, Lina ZHANG, Yanqing ZHOU College o Computer and Inormation

More information

A Neural Network Model Of Insurance Customer Ratings

A Neural Network Model Of Insurance Customer Ratings A Neural Network Model Of Insurance Customer Ratings Jan Jantzen 1 Abstract Given a set of data on customers the engineering problem in this study is to model the data and classify customers

More information

Edge Detection for Dental X-ray Image Segmentation using Neural Network approach

Edge Detection for Dental X-ray Image Segmentation using Neural Network approach Volume 1, No. 7, September 2012 ISSN 2278-1080 The International Journal of Computer Science & Applications (TIJCSA) RESEARCH PAPER Available Online at http://www.journalofcomputerscience.com/ Edge Detection

More information

CS6220: DATA MINING TECHNIQUES

CS6220: DATA MINING TECHNIQUES CS6220: DATA MINING TECHNIQUES Image Data: Classification via Neural Networks Instructor: Yizhou Sun yzsun@ccs.neu.edu November 19, 2015 Methods to Learn Classification Clustering Frequent Pattern Mining

More information

Data Mining. Neural Networks

Data Mining. Neural Networks Data Mining Neural Networks Goals for this Unit Basic understanding of Neural Networks and how they work Ability to use Neural Networks to solve real problems Understand when neural networks may be most

More information

A Review of Evaluation of Optimal Binarization Technique for Character Segmentation in Historical Manuscripts

A Review of Evaluation of Optimal Binarization Technique for Character Segmentation in Historical Manuscripts 010 Third International Conerence on Knowledge Discovery and Data Mining A Review o Evaluation o Optimal Binarization Technique or Character Segmentation in Historical Manuscripts Chun Che Fung and Rapeeporn

More information

Using Multi-layered Feed-forward Neural Network (MLFNN) Architecture as Bidirectional Associative Memory (BAM) for Function Approximation

Using Multi-layered Feed-forward Neural Network (MLFNN) Architecture as Bidirectional Associative Memory (BAM) for Function Approximation IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 13, Issue 4 (Jul. - Aug. 2013), PP 34-38 Using Multi-layered Feed-forward Neural Network (MLFNN) Architecture

More information

IMPLEMENTATION OF FPGA-BASED ARTIFICIAL NEURAL NETWORK (ANN) FOR FULL ADDER. Research Scholar, IIT Kharagpur.

IMPLEMENTATION OF FPGA-BASED ARTIFICIAL NEURAL NETWORK (ANN) FOR FULL ADDER. Research Scholar, IIT Kharagpur. Journal of Analysis and Computation (JAC) (An International Peer Reviewed Journal), www.ijaconline.com, ISSN 0973-2861 Volume XI, Issue I, Jan- December 2018 IMPLEMENTATION OF FPGA-BASED ARTIFICIAL NEURAL

More information

Classification Method for Colored Natural Textures Using Gabor Filtering

Classification Method for Colored Natural Textures Using Gabor Filtering Classiication Method or Colored Natural Textures Using Gabor Filtering Leena Lepistö 1, Iivari Kunttu 1, Jorma Autio 2, and Ari Visa 1, 1 Tampere University o Technology Institute o Signal Processing P.

More information

Mobile Robot Static Path Planning Based on Genetic Simulated Annealing Algorithm

Mobile Robot Static Path Planning Based on Genetic Simulated Annealing Algorithm Mobile Robot Static Path Planning Based on Genetic Simulated Annealing Algorithm Wang Yan-ping 1, Wubing 2 1. School o Electric and Electronic Engineering, Shandong University o Technology, Zibo 255049,

More information

ARTIFICIAL NEURAL NETWORKS (ANNs) are widely

ARTIFICIAL NEURAL NETWORKS (ANNs) are widely 930 IEEE TRANSACTIONS ON NEURAL NETWORKS, VOL. 21, NO. 6, JUNE 2010 Improved Computation for Levenberg Marquardt Training Bogdan M. Wilamowski, Fellow, IEEE, and Hao Yu Abstract The improved computation

More information

2. Recommended Design Flow

2. Recommended Design Flow 2. Recommended Design Flow This chapter describes the Altera-recommended design low or successully implementing external memory interaces in Altera devices. Altera recommends that you create an example

More information

Creating Situational Awareness with Spacecraft Data Trending and Monitoring

Creating Situational Awareness with Spacecraft Data Trending and Monitoring Creating Situational Awareness with Spacecraft Data Trending and Monitoring Zhenping Li ASRC Technical Services, Zhenping.Li@asrcfederal.com J.P. Douglas, and Ken Mitchell ASRC Technical Services, JPaul.Douglas@noaa.gov

More information

CMPT 882 Week 3 Summary

CMPT 882 Week 3 Summary CMPT 882 Week 3 Summary! Artificial Neural Networks (ANNs) are networks of interconnected simple units that are based on a greatly simplified model of the brain. ANNs are useful learning tools by being

More information

AUTOMATING THE DESIGN OF SOUND SYNTHESIS TECHNIQUES USING EVOLUTIONARY METHODS. Ricardo A. Garcia *

AUTOMATING THE DESIGN OF SOUND SYNTHESIS TECHNIQUES USING EVOLUTIONARY METHODS. Ricardo A. Garcia * AUTOMATING THE DESIGN OF SOUND SYNTHESIS TECHNIQUES USING EVOLUTIONARY METHODS Ricardo A. Garcia * MIT Media Lab Machine Listening Group 20 Ames St., E5-49, Cambridge, MA 0239 rago@media.mit.edu ABSTRACT

More information

Intelligent knowledge-based system for the automated screwing process control

Intelligent knowledge-based system for the automated screwing process control Intelligent knowledge-based system or the automated screwing process control YULIYA LEBEDYNSKA yuliya.lebedynska@tu-cottbus.de ULRICH BERGER Chair o automation Brandenburg University o Technology Cottbus

More information

International Journal of Advanced Research in Computer Science and Software Engineering

International Journal of Advanced Research in Computer Science and Software Engineering Volume 3, Issue 4, April 203 ISSN: 77 2X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Stock Market Prediction

More information

Research on Image Splicing Based on Weighted POISSON Fusion

Research on Image Splicing Based on Weighted POISSON Fusion Research on Image Splicing Based on Weighted POISSO Fusion Dan Li, Ling Yuan*, Song Hu, Zeqi Wang School o Computer Science & Technology HuaZhong University o Science & Technology Wuhan, 430074, China

More information

Classifier Evasion: Models and Open Problems

Classifier Evasion: Models and Open Problems . In Privacy and Security Issues in Data Mining and Machine Learning, eds. C. Dimitrakakis, et al. Springer, July 2011, pp. 92-98. Classiier Evasion: Models and Open Problems Blaine Nelson 1, Benjamin

More information

A Compensatory Wavelet Neuron Model

A Compensatory Wavelet Neuron Model A Compensatory Wavelet Neuron Model Sinha, M., Gupta, M. M. and Nikiforuk, P.N Intelligent Systems Research Laboratory College of Engineering, University of Saskatchewan Saskatoon, SK, S7N 5A9, CANADA

More information

MODIFIED KALMAN FILTER BASED METHOD FOR TRAINING STATE-RECURRENT MULTILAYER PERCEPTRONS

MODIFIED KALMAN FILTER BASED METHOD FOR TRAINING STATE-RECURRENT MULTILAYER PERCEPTRONS MODIFIED KALMAN FILTER BASED METHOD FOR TRAINING STATE-RECURRENT MULTILAYER PERCEPTRONS Deniz Erdogmus, Justin C. Sanchez 2, Jose C. Principe Computational NeuroEngineering Laboratory, Electrical & Computer

More information

Image Upscaling and Fuzzy ARTMAP Neural Network

Image Upscaling and Fuzzy ARTMAP Neural Network IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 4, Ver. II (July Aug. 2015), PP 79-85 www.iosrjournals.org Image Upscaling and Fuzzy ARTMAP Neural

More information

Binary Morphological Model in Refining Local Fitting Active Contour in Segmenting Weak/Missing Edges

Binary Morphological Model in Refining Local Fitting Active Contour in Segmenting Weak/Missing Edges 0 International Conerence on Advanced Computer Science Applications and Technologies Binary Morphological Model in Reining Local Fitting Active Contour in Segmenting Weak/Missing Edges Norshaliza Kamaruddin,

More information

Supervised Learning in Neural Networks (Part 2)

Supervised Learning in Neural Networks (Part 2) Supervised Learning in Neural Networks (Part 2) Multilayer neural networks (back-propagation training algorithm) The input signals are propagated in a forward direction on a layer-bylayer basis. Learning

More information

Planar Robot Arm Performance: Analysis with Feedforward Neural Networks

Planar Robot Arm Performance: Analysis with Feedforward Neural Networks Planar Robot Arm Performance: Analysis with Feedforward Neural Networks Abraham Antonio López Villarreal, Samuel González-López, Luis Arturo Medina Muñoz Technological Institute of Nogales Sonora Mexico

More information

IN recent years, neural networks have attracted considerable attention

IN recent years, neural networks have attracted considerable attention Multilayer Perceptron: Architecture Optimization and Training Hassan Ramchoun, Mohammed Amine Janati Idrissi, Youssef Ghanou, Mohamed Ettaouil Modeling and Scientific Computing Laboratory, Faculty of Science

More information

A Novel Accurate Genetic Algorithm for Multivariable Systems

A Novel Accurate Genetic Algorithm for Multivariable Systems World Applied Sciences Journal 5 (): 137-14, 008 ISSN 1818-495 IDOSI Publications, 008 A Novel Accurate Genetic Algorithm or Multivariable Systems Abdorreza Alavi Gharahbagh and Vahid Abolghasemi Department

More information

Feed Forward Neural Network for Solid Waste Image Classification

Feed Forward Neural Network for Solid Waste Image Classification Research Journal of Applied Sciences, Engineering and Technology 5(4): 1466-1470, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: June 29, 2012 Accepted: August

More information

Classifier Evasion: Models and Open Problems

Classifier Evasion: Models and Open Problems Classiier Evasion: Models and Open Problems Blaine Nelson 1, Benjamin I. P. Rubinstein 2, Ling Huang 3, Anthony D. Joseph 1,3, and J. D. Tygar 1 1 UC Berkeley 2 Microsot Research 3 Intel Labs Berkeley

More information

APPLICATION OF A MULTI- LAYER PERCEPTRON FOR MASS VALUATION OF REAL ESTATES

APPLICATION OF A MULTI- LAYER PERCEPTRON FOR MASS VALUATION OF REAL ESTATES FIG WORKING WEEK 2008 APPLICATION OF A MULTI- LAYER PERCEPTRON FOR MASS VALUATION OF REAL ESTATES Tomasz BUDZYŃSKI, PhD Artificial neural networks the highly sophisticated modelling technique, which allows

More information

A Novel Technique for Optimizing the Hidden Layer Architecture in Artificial Neural Networks N. M. Wagarachchi 1, A. S.

A Novel Technique for Optimizing the Hidden Layer Architecture in Artificial Neural Networks N. M. Wagarachchi 1, A. S. American International Journal of Research in Science, Technology, Engineering & Mathematics Available online at http://www.iasir.net ISSN (Print): 2328-3491, ISSN (Online): 2328-3580, ISSN (CD-ROM): 2328-3629

More information

Method estimating reflection coefficients of adaptive lattice filter and its application to system identification

Method estimating reflection coefficients of adaptive lattice filter and its application to system identification Acoust. Sci. & Tech. 28, 2 (27) PAPER #27 The Acoustical Society o Japan Method estimating relection coeicients o adaptive lattice ilter and its application to system identiication Kensaku Fujii 1;, Masaaki

More information

Neural Network Learning. Today s Lecture. Continuation of Neural Networks. Artificial Neural Networks. Lecture 24: Learning 3. Victor R.

Neural Network Learning. Today s Lecture. Continuation of Neural Networks. Artificial Neural Networks. Lecture 24: Learning 3. Victor R. Lecture 24: Learning 3 Victor R. Lesser CMPSCI 683 Fall 2010 Today s Lecture Continuation of Neural Networks Artificial Neural Networks Compose of nodes/units connected by links Each link has a numeric

More information

International Journal of Electrical and Computer Engineering 4: Application of Neural Network in User Authentication for Smart Home System

International Journal of Electrical and Computer Engineering 4: Application of Neural Network in User Authentication for Smart Home System Application of Neural Network in User Authentication for Smart Home System A. Joseph, D.B.L. Bong, and D.A.A. Mat Abstract Security has been an important issue and concern in the smart home systems. Smart

More information

Research Article International Journals of Advanced Research in Computer Science and Software Engineering ISSN: X (Volume-7, Issue-6)

Research Article International Journals of Advanced Research in Computer Science and Software Engineering ISSN: X (Volume-7, Issue-6) International Journals of Advanced Research in Computer Science and Software Engineering Research Article June 17 Artificial Neural Network in Classification A Comparison Dr. J. Jegathesh Amalraj * Assistant

More information

Artificial Neural Network based Hydro Electric Generation Modelling

Artificial Neural Network based Hydro Electric Generation Modelling Volume 1, No 3, 010 Copyright 010 All rights reserved Integrated Publishing Association RESEARCH ARTICLE ISSN 0976 459 Artificial Neural Network based Hydro Electric Generation odelling Deepika Yadav.,

More information

In this assignment, we investigated the use of neural networks for supervised classification

In this assignment, we investigated the use of neural networks for supervised classification Paul Couchman Fabien Imbault Ronan Tigreat Gorka Urchegui Tellechea Classification assignment (group 6) Image processing MSc Embedded Systems March 2003 Classification includes a broad range of decision-theoric

More information

The use of Neural Networks in Text Categorization. Abhishek Sethi

The use of Neural Networks in Text Categorization. Abhishek Sethi The use of Neural Networks in Text Categorization Abhishek Sethi What is a Neural Network An attempt at creating a learning system that mimics the brain Brain consists of billions of neurons, interconnected,

More information

6. NEURAL NETWORK BASED PATH PLANNING ALGORITHM 6.1 INTRODUCTION

6. NEURAL NETWORK BASED PATH PLANNING ALGORITHM 6.1 INTRODUCTION 6 NEURAL NETWORK BASED PATH PLANNING ALGORITHM 61 INTRODUCTION In previous chapters path planning algorithms such as trigonometry based path planning algorithm and direction based path planning algorithm

More information

PERFORMANCE ANALYSIS AND VALIDATION OF CLUSTERING ALGORITHMS USING SOFT COMPUTING TECHNIQUES

PERFORMANCE ANALYSIS AND VALIDATION OF CLUSTERING ALGORITHMS USING SOFT COMPUTING TECHNIQUES PERFORMANCE ANALYSIS AND VALIDATION OF CLUSTERING ALGORITHMS USING SOFT COMPUTING TECHNIQUES Bondu Venkateswarlu Research Scholar, Department of CS&SE, Andhra University College of Engineering, A.U, Visakhapatnam,

More information

Experimental Data and Training

Experimental Data and Training Modeling and Control of Dynamic Systems Experimental Data and Training Mihkel Pajusalu Alo Peets Tartu, 2008 1 Overview Experimental data Designing input signal Preparing data for modeling Training Criterion

More information

MATLAB representation of neural network Outline Neural network with single-layer of neurons. Neural network with multiple-layer of neurons.

MATLAB representation of neural network Outline Neural network with single-layer of neurons. Neural network with multiple-layer of neurons. MATLAB representation of neural network Outline Neural network with single-layer of neurons. Neural network with multiple-layer of neurons. Introduction: Neural Network topologies (Typical Architectures)

More information

Neural network based Numerical digits Recognization using NNT in Matlab

Neural network based Numerical digits Recognization using NNT in Matlab Neural network based Numerical digits Recognization using NNT in Matlab ABSTRACT Amritpal kaur 1, Madhavi Arora 2 M.tech- ECE 1, Assistant Professor 2 Global institute of engineering and technology, Amritsar

More information

Assignment 2. Classification and Regression using Linear Networks, Multilayer Perceptron Networks, and Radial Basis Functions

Assignment 2. Classification and Regression using Linear Networks, Multilayer Perceptron Networks, and Radial Basis Functions ENEE 739Q: STATISTICAL AND NEURAL PATTERN RECOGNITION Spring 2002 Assignment 2 Classification and Regression using Linear Networks, Multilayer Perceptron Networks, and Radial Basis Functions Aravind Sundaresan

More information

Classification and Regression using Linear Networks, Multilayer Perceptrons and Radial Basis Functions

Classification and Regression using Linear Networks, Multilayer Perceptrons and Radial Basis Functions ENEE 739Q SPRING 2002 COURSE ASSIGNMENT 2 REPORT 1 Classification and Regression using Linear Networks, Multilayer Perceptrons and Radial Basis Functions Vikas Chandrakant Raykar Abstract The aim of the

More information

An Intelligent Technique for Image Compression

An Intelligent Technique for Image Compression An Intelligent Technique for Image Compression Athira Mayadevi Somanathan 1, V. Kalaichelvi 2 1 Dept. Of Electronics and Communications Engineering, BITS Pilani, Dubai, U.A.E. 2 Dept. Of Electronics and

More information

Volume 1, Issue 3 (2013) ISSN International Journal of Advance Research and Innovation

Volume 1, Issue 3 (2013) ISSN International Journal of Advance Research and Innovation Application of ANN for Prediction of Surface Roughness in Turning Process: A Review Ranganath M S *, Vipin, R S Mishra Department of Mechanical Engineering, Dehli Technical University, New Delhi, India

More information

Global Journal of Engineering Science and Research Management

Global Journal of Engineering Science and Research Management A NOVEL HYBRID APPROACH FOR PREDICTION OF MISSING VALUES IN NUMERIC DATASET V.B.Kamble* 1, S.N.Deshmukh 2 * 1 Department of Computer Science and Engineering, P.E.S. College of Engineering, Aurangabad.

More information

Subgraph Matching Using Graph Neural Network

Subgraph Matching Using Graph Neural Network Journal of Intelligent Learning Systems and Applications, 0,, -8 http://dxdoiorg/0/jilsa008 Published Online November 0 (http://wwwscirporg/journal/jilsa) GnanaJothi Raja Baskararaja, MeenaRani Sundaramoorthy

More information

KINEMATIC ANALYSIS OF ADEPT VIPER USING NEURAL NETWORK

KINEMATIC ANALYSIS OF ADEPT VIPER USING NEURAL NETWORK Proceedings of the National Conference on Trends and Advances in Mechanical Engineering, YMCA Institute of Engineering, Faridabad, Haryana., Dec 9-10, 2006. KINEMATIC ANALYSIS OF ADEPT VIPER USING NEURAL

More information

KANGAL REPORT

KANGAL REPORT Individual Penalty Based Constraint handling Using a Hybrid Bi-Objective and Penalty Function Approach Rituparna Datta Kalyanmoy Deb Mechanical Engineering IIT Kanpur, India KANGAL REPORT 2013005 Abstract

More information

S. Ashok kumar Sr. Lecturer, Dept of CA Sasurie College of Engineering Vijayamangalam, Tirupur (Dt), Tamil Nadu, India

S. Ashok kumar Sr. Lecturer, Dept of CA Sasurie College of Engineering Vijayamangalam, Tirupur (Dt), Tamil Nadu, India Neural Network Implementation for Integer Linear Programming Problem G.M. Nasira Professor & Vice Principal Sasurie College of Engineering Viyayamangalam, Tirupur (Dt), S. Ashok kumar Sr. Lecturer, Dept

More information

Visual object classification by sparse convolutional neural networks

Visual object classification by sparse convolutional neural networks Visual object classification by sparse convolutional neural networks Alexander Gepperth 1 1- Ruhr-Universität Bochum - Institute for Neural Dynamics Universitätsstraße 150, 44801 Bochum - Germany Abstract.

More information

New Approaches for Image Compression Using Neural Network

New Approaches for Image Compression Using Neural Network Journal of Intelligent Learning Systems and Applications, 2011, 3, 220-229 doi:10.4236/jilsa.2011.34025 Published Online November 2011 (http://www.scirp.org/journal/jilsa) New Approaches for Image Compression

More information

A Proposed Approach for Solving Rough Bi-Level. Programming Problems by Genetic Algorithm

A Proposed Approach for Solving Rough Bi-Level. Programming Problems by Genetic Algorithm Int J Contemp Math Sciences, Vol 6, 0, no 0, 45 465 A Proposed Approach or Solving Rough Bi-Level Programming Problems by Genetic Algorithm M S Osman Department o Basic Science, Higher Technological Institute

More information

Comparison of variable learning rate and Levenberg-Marquardt back-propagation training algorithms for detecting attacks in Intrusion Detection Systems

Comparison of variable learning rate and Levenberg-Marquardt back-propagation training algorithms for detecting attacks in Intrusion Detection Systems Comparison of variable learning rate and Levenberg-Marquardt back-propagation training algorithms for detecting attacks in Intrusion Detection Systems Tummala Pradeep 1 IV th Year Student, Department of

More information

Keywords: ANN; network topology; bathymetric model; representability.

Keywords: ANN; network topology; bathymetric model; representability. Proceedings of ninth International Conference on Hydro-Science and Engineering (ICHE 2010), IIT Proceedings Madras, Chennai, of ICHE2010, India. IIT Madras, Aug 2-5,2010 DETERMINATION OF 2 NETWORK - 5

More information

Performance Evaluation of Artificial Neural Networks for Spatial Data Analysis

Performance Evaluation of Artificial Neural Networks for Spatial Data Analysis Performance Evaluation of Artificial Neural Networks for Spatial Data Analysis Akram A. Moustafa 1*, Ziad A. Alqadi 2 and Eyad A. Shahroury 3 1 Department of Computer Science Al Al-Bayt University P.O.

More information

Neural Networks Laboratory EE 329 A

Neural Networks Laboratory EE 329 A Neural Networks Laboratory EE 329 A Introduction: Artificial Neural Networks (ANN) are widely used to approximate complex systems that are difficult to model using conventional modeling techniques such

More information

Automatic Video Segmentation for Czech TV Broadcast Transcription

Automatic Video Segmentation for Czech TV Broadcast Transcription Automatic Video Segmentation or Czech TV Broadcast Transcription Jose Chaloupka Laboratory o Computer Speech Processing, Institute o Inormation Technology and Electronics Technical University o Liberec

More information

Design and Performance Analysis of and Gate using Synaptic Inputs for Neural Network Application

Design and Performance Analysis of and Gate using Synaptic Inputs for Neural Network Application IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 12 May 2015 ISSN (online): 2349-6010 Design and Performance Analysis of and Gate using Synaptic Inputs for Neural

More information

Prediction of Slot-shape, Slot-size and Inserted Air-gap of a Microstrip Antenna Using Knowledge-based Neural Network

Prediction of Slot-shape, Slot-size and Inserted Air-gap of a Microstrip Antenna Using Knowledge-based Neural Network Machine Copy or Prooreading, Vol. x, y z, 06 Prediction o Slot-shape, Slot-size and Inserted Air-gap o a Microstrip Antenna Using Knowledge-based Neural Network Taimoor Khan, * and Asok De Abstract In

More information

II. ARTIFICIAL NEURAL NETWORK

II. ARTIFICIAL NEURAL NETWORK Applications of Artificial Neural Networks in Power Systems: A Review Harsh Sareen 1, Palak Grover 2 1, 2 HMR Institute of Technology and Management Hamidpur New Delhi, India Abstract: A standout amongst

More information

COMBINING NEURAL NETWORKS FOR SKIN DETECTION

COMBINING NEURAL NETWORKS FOR SKIN DETECTION COMBINING NEURAL NETWORKS FOR SKIN DETECTION Chelsia Amy Doukim 1, Jamal Ahmad Dargham 1, Ali Chekima 1 and Sigeru Omatu 2 1 School of Engineering and Information Technology, Universiti Malaysia Sabah,

More information

Simulation of Zhang Suen Algorithm using Feed- Forward Neural Networks

Simulation of Zhang Suen Algorithm using Feed- Forward Neural Networks Simulation of Zhang Suen Algorithm using Feed- Forward Neural Networks Ritika Luthra Research Scholar Chandigarh University Gulshan Goyal Associate Professor Chandigarh University ABSTRACT Image Skeletonization

More information

A Boosting-Based Framework for Self-Similar and Non-linear Internet Traffic Prediction

A Boosting-Based Framework for Self-Similar and Non-linear Internet Traffic Prediction A Boosting-Based Framework for Self-Similar and Non-linear Internet Traffic Prediction Hanghang Tong 1, Chongrong Li 2, and Jingrui He 1 1 Department of Automation, Tsinghua University, Beijing 100084,

More information