INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET)

Size: px
Start display at page:

Download "INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET)"

Transcription

1 INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) International Journal of Computer Engineering and Technology (IJCET), ISSN (Print), ISSN ISSN (Print) ISSN (Online) Volume 3, Issue 2, July- September (2012), pp IAEME: Journal Impact Factor (2011): (Calculated by GISI) IJCET I A E M E PERFORMANCE EVALUATION OF MULTILAYER PERCEPTRON NEURAL NETWORK BASED CARDIAC ARRHYTHMIA CLASSIFIER Shivajirao M. Jadhav 1, Sanjay L. Nalbalwar 2 and Ashok A. Ghatol 3 1 Information Technology Department, Dr. Babasaheb Ambedkar Technological University Lonere, Maharashtra , India smj33@rediffmail.com 2 Electronics and Telecommunications Department, Dr. Babasaheb Ambedkar Technological University Lonere, Maharashtra , India slnalbalwar@dbatu.ac.in 3 Campus Director, K. J. Educational Institutions Pisoli, Kondahwa-Saswad Road, Near Bopdeo Ghat, Pune, Maharashtra , India vc_2005@rediffmail.com Abstract Today heart disease is the most common cause of death in the world so the detection and treatment of arrhythmias has become one of the biggest challenges for cardiac care unit. Artificial neural networks have been successfully applied to classify medical or diagnostic data. The main objective in this paper is to distinguish between the normal and abnormal subject cases of cardiac arrhythmia. A Multilayer perceptron (MLP) model with momentum learning rule approach is applied to classify ECG arrhythmias after replacing missing values by closest column method. We used UCI repository benchmark data for this classification purpose. The total numbers of samples are 452 in data. Five data sets are formed by varying training and testing percentages and separate experiments are performed on each data set by varying hidden layers from one to three. In this study, we are mainly interested in producing high confident arrhythmia classification results to be applicable in diagnostic decision support systems. The classifier performance is evaluated using various measures such as sensitivity, specificity, 1

2 classification accuracy, mean squared error (MSE), receiver operating characteristics (ROC) and area under curve (AUC). The experimental results presented in this paper are very attractive in terms of classification accuracy. Keywords: Accuracy, ECG arrhythmia, machine learning, momentum learning rule, sensitivity, specificity. 1. Introduction Cardiac arrhythmia, disorders of cardiac rhythm, may indicate the susceptibility of serious heart disease, stroke or sudden cardiac death. Early diagnosis of cardiac arrhythmia makes it possible to choose appropriate anti-arrhythmic drugs, and is thus very important for improving arrhythmia therapy. Various Machine learning (ML) and data mining methods have been applied to improve the accuracy for the detection of ECG arrhythmia. Once a data mining task is identified, appropriate methods have to be selected for execution of this task. Method selection depends highly on the application context as given by initial task analysis, on the properties of the data on which the analysis is being performed, on previous experience with similar domains, and on user-specified requirements for the results [1]. Electrocardiogram records electronic activities of the heart, and has been widely adapted for diagnosing cardiac arrhythmia [2]. By far, a number of signal processing [3], pattern recognition [4, 5], and machine learning [6] methods had been proposed. The publications of several generally available arrhythmia data sets also played an important role in stimulating research on cardiac arrhythmia diagnosis [7, 8]. In this paper, we proposed an AAN based approach, which can classify ECG arrhythmia into normal and abnormal classes i.e. distinguish between presence and absence of cardiac arrhythmia patient cases. We used Multilayer perceptron (MLP) neural network model with static backpropagation algorithm. We have varied one to three numbers of hidden layers while designing various network topologies. The proposed method first cleans the data set by replacing missing values by closest column values of the concern class. 2. Related Research Work Gao and Madden [1] developed an arrhythmia detection system with ECG signals based on a Bayesian ANN Classifier and its performance is compared with that of other classifiers, specifically Naive Bayes, Decision Trees, Logistic Regression and RBF Networks. Zuo et al. [2] proposed a kernel difference weighted k-nearest neighbor classifier (KDF-WKNN) for the diagnosis of cardiac arrhythmia based on the standard 12 lead ECG recordings. They have used a modified principal component analysis (PCA) approach to cope with the missing attribute values. This approach is different from classical K- nearest neighbor (KNN) classifier. Several methods for automated arrhythmia detection have been developed in the past few decades to attempt to simplify the monitoring task [9]. These include Wavelet transformation 2

3 [10-12], RBF Neural Networks [13], self- organizing map [14] and fuzzy c-means clustering techniques [15]. Multilayer neural networks are used to classify arrhythmia QRS complexes, and for ischemia detection [16-17]. Parts of this work using MLP and modular neural network is available in [18] and [19] respectively. An Artificial immune recognition system (AIRS) with fuzzy weighted pre-processing [20] is also used for arrhythmia classification. ECG arrhythmia classification and Fetal state classification using ANN models is also available in [21-26]. Various neural network models are used to classify ECG arrhythmia and classification accuracies are reported in [27-30]. 3. Methods 3.1 Description of data set The Cardiac Arrhythmia Database from the UCI Machine Learning Repository [8] is used. This data set is a good environment to test classifiers as it is incomplete and ambiguous bio-signal data collected from total 452 patient cases. The first class is Normal, and the other 15 classes are 15 kinds of arrhythmia. These 15 classes are merged into a single class called Abnormal class a representative 15 arrhythmia classes. For each sample, there are 279 attributes, where the first four, age, sex, height, and weight, are the general description of the participant, and the other 276 attributes are extracted from the standard 12 lead ECG recordings. For the details of the data set, please refer to [4, 6, 8]. There are two significant characteristics which should be noted for the UCI cardiac arrhythmia database. The entire database is first preprocessed to replace missing attributes. We have used closest column value of the concern class. And later all the records are randomized. 3.2 Data set groups The original data set grouped into different data sets as shown in the table 1 and each group is partitioned into two subsets viz. training set and testing set except the last group labeled as DSMains in which all 452 instances are used for training purpose only. Table 1: Data Set Group Partitions Data Set Name Training % age Testing % age Training instances Testing Instances Data set 1 (DS1) Data set 2 (DS2) Data set 3 (DS3) Data set 4 (DS4) Data set 5 (DS5) Main Data Set (DSMains) Training set itself all 452 instances For Training only. 3

4 3.3 Multilayer Perceptron Network Model Artificial neural network (ANN) is a data processing mathematical model. It consists of a number of units or elements called nodes or neurons. These nodes or neurons are arranged in layers and are interconnected by weights and biases between the layers. The first layer is known as input layer and the last layer is known as output layer. The layers between input layer and output layer are known as hidden layers. The number of input neurons depends on the number of input variables to the ANN model while the number of output neurons depends on the number of output desired form the model. There is no hard and fast rule to determine the number of neurons in the hidden layer. It depends on the complexity of the problem sought. Usually three stages are considered in ANN applications, viz., (i) training, (ii) validation and (iii) testing. During training and validation stages both input and target data is introduced to the network. But in testing stage a different set of data containing only input values is fed to the network. Figure 1 illustrates architecture of a simple multilayer perceptron (MLP) neural network model with two hidden layers. Fig. 1: Multilayer Perceptron Neural Network Model This is a feed forward network and in this networks all the information is transferred in the forward direction only and there is no loop or cycle in the network. In Fig. 1, the symbols i, j and k represent the i th (1<i<P), j th (1<j<L) and k th (1<k<M) neuron in input, hidden and output layers, respectively. P, L and M are the total number of neurons in input, hidden and output layers, respectively. The input value to individual input neurons are denoted by the letter x, y is the output from output neurons and z is the target value introduced to the network during training. The purpose of training a network is to minimize the error between outputs of the network and target values. Training algorithm reduces the error by adjusting weights and biases of the network. In training, input values are multiplied by respective connection weights and then biases are added. The same process is repeated for output layer where output of hidden layer is used as input for output layer. The combination of net weighted input and biases net j to the j th neuron of the hidden layer can be expressed as [31]: where, j=x +b (1) 4

5 x i is the input value to the i th neuron of input layer, while w ji is the weight of j th neuron of hidden layer connected to the ith neuron of the input layer and bj is the bias of jth hidden neuron. The net value netj is passed through a transfer or activation function in the hidden layer to produce an output from the hidden neuron. The output from the hidden layer can be expressed as [36]: = ( )= x w +b (2) where, y j - the output from j th hidden neuron. The output from the hidden layer y j is used as an input to the output layer and the same process as in hidden layer is repeated in the output neurons to produce output from output layer. The net weighted input to the output neuron can be represented by [31]: = + = ( + + (3) where, is the weight of k th neuron of the output layer connected to the j th neuron of the hidden layer and b k is the bias of the k th neuron in the output layer. The output from the k th neuron in the output layer is given by [31]: =( )= ( + ) + (4) The error e k of the k th neuron in the output layer, which is the square of the difference between the target and output, can be written as [31]: =( ) (5) If there are L numbers of input data pairs such that (1 l L), the global error of the network in terms of mean squared error is written as [36]: (6) ( ) Equation 6 is called the error function of the network and is a function of network connection weights. During training the global error function is minimized by the training algorithm which enables updating (adjusting) the connection weights through successive iterations such that the difference between target and output values for the whole dataset is within a predefined tolerance limit [31]. 4. Experimental Results Experiments are performed on Neuro Solutions (version 5.0) software simulation tool [32]. We have varied number of hidden layers (HLs) from 1 to 3 for each data set. Testing 5

6 classification results for all data sets are shown in given in table 2. Resultss shown in table 2 against data set DSMains are obtained using all 452 instances for training only. Observing classification results it is clear that the data set 4 gives better performance in terms of training sensitivity, specificity and accuracy. Training MSE is shown in figure 2. For two to three number of HL design models training is very good as MSE for these designs is low as compared to one number of hidden layer design model. Figure 3 shows training data set specificity, sensitivity and accuracy. Training data sets have given very attractive performance in terms of these measures. Figure 4 gives performance against testing for all the data sets. Testing accuracy of arrhythmia classifier for data set 5 is very good and it is above 80% for all the three designs of ANN models. From figure 4 it is clear that testing accuracy is very attractive (86.67%) for network design with two numbers of HLs for this data set 5. Testing specificity and sensitivity is shown in figure 5. Sensitivity for MLP design of two numbers of HLs is very attractive and it is 93.75%. Data set DS5 has given best classification results therefore for this data set ROC matrix is graphed as an ROC curve as shown in figure 6. Area under ROC curve is higher as compared with ANN models with 1 and 3 numbers of hidden layers as shown in figure 7 for this data set 5. Table 3 gives the comparison of classification accuracy for ECG classification problem we have considered and existing classifiers designed by other researchers. Table 2: Arrhythmia Classification Results Data Set No. of Hidden Sensitivity Specificity Classification Name Layers (%) (%) Accuracy (%) DS DS DS DS DS DSMains Fig. 2: Training MSE 6

7 Fig. 3: Training Specificity, Sensitivity and Accuracy Fig. 4: Testing Accuracy for all Data Sets Fig.5: Testing Sensitivity and Specificity Fig. 6: Testing ROC Curve for Data Set 5 Fig. 7: Area under ROC Curve for Data Set 5 7

8 Table 3: MLP model s classification accuracy for ECG classification problem with classification accuracies obtained by other methods in literature A novel pruning method [35] KDFW KNN [2] SVM with Gaussian Kernel HLVQ [33] Fuzzy weighted AIRS NEW -FM [32] Modular NN (Our earlier work) [24] MLP with two HLs (our work) [34] [25] % CONCLUSION With the improvements in expert systems and ML tools, the effects of these innovations are entering to more application domains day-by-day and medical field is one of them. Decision-making in medical field can be a trouble sometimes. When investigators design neural networks for the application of arrhythmia classification presented in this paper, there are many ways used to investigate the effects of various ANN MLP models which refer to the specification of network size (i.e. number of HLs) when the number of inputs and outputs are fixed. When we design MLP network analyze the performance of arrhythmia classification we reach to the following facts: MLP with two numbers of HLs with momentum learning rule gives better classification accuracy as compared to other ANN MLP topologies. Our experimental results strongly suggest that MLP model can aid in the diagnosis of cardiac arrhythmias. Our experimental results on the UCI cardiac arrhythmia database show classification accuracy of for data set 5. It is also proved that to evaluate the performance of classifier almost all different performance measures are required to evaluate the performance of neural network based classifier. We hope that this system can be further developed and fine-tuned for practical applications. References [1] Dayong Gao and Michael Madden (2003), Bayesian ANN Classifier for ECG Arrhythmias Diagnostic System, Proceeding of IEEE International Joint Conference on Neural Network pp [2] Zuo, W.M. et. al.(2008), Diagnosis of cardiac arrhythmia using kernel difference weighted KNN classifier, Computers in Cardiology, pp [3] Thakor NV and Zhu Y. S. (1991), Applications of adaptive filtering to ECG analysis: Noise cancellation and arrhythmia detection, Biomedical Engineering, pp [4] Coast D.A. et. al. (1990), An approach to cardiac arrhythmia analysis using hidden Markov models, Biomedical Engineering, 37(9), pp [5] Lima C.S. and Cardoso M.J. (2007), Cardiac arrhythmia detection by parameters sharing and MMIE training of hidden Markov models, Engineering in Medicine and Biology Society, pp [6] Guvenir H.A. et. al., (1997), A supervised machine learning algorithm for arrhythmia analysis, Computers in Cardiology, pp; [7] Moody G.B. and Mark R.G. (2001), The impact of the MIT-BIH arrhythmia database, Engineering in Medicine and Biology Magazine, 20(3), pp

9 [8] Blake C.L. and Merz C.J. (1998), UCI Repository of Machine Learning Databases, Available online from: (Downloaded date: 25th January, 2012 ) [9] Raut R.D. and Dudul S.V. (2008), Arrhythmias Classification with MLP Neural Network and Statistical Analysis, First IEEE International Conference on Emerging Trends in Engineering and Technology, pp [10] G. Selvakumar, and K. Boopathy Bagan (2007), Wavelet Decomposition for Detection and Classification of Critical ECG Arrhythmias, Proceeding of the 8th WSEAS International Conference on Mathematics and computers in Biology and Chemistry, pp [11] G. Selvakumar, K. Boopathy Bagan (2006), An Efficient QRS Complex Detection Algorithm using Optimal Wavelet, WSEAS Transactions on Signal Processing, Volume 2, Issue 8, pp [12] Sung-Nien and Yu,Ying-Hsiang Chen (2007), Electrocardiogram beat classification based on wavelet transformation and probabilistic neural network, Pattern Recognition, Elsevier Science Inc New York, NY, USA, Volume 28, Issue 10, pp [13] Hafizah Hussain and Lai Len Fatt (2007), Efficient ECG Signal Classification Using Sparsely Connected Radial Basis Function Neural Network, Proceedings of the 6th WSEAS International Conference on Circuits, Systems, Electronics, Control and Signal Processing, pp [14] Rahime et. al. (2007), Comparison of FCM, PCA and WT techniques for classification ECG arrhythmias using artificial neural network, Elsevier s Expert Systems with Applications Volume 33, Issue 2, pp [15] Labib Khadra, et. al. (2005), A quantitative analysis approach for cardiac arrhythmia classification using higher order spectral techniques, IEEE Transactions on Biomedical Engineering, Vol. 52, No. 11, pp [16] Yang Wang et. al. (2001), A Short Time Multifractal Approach for Arrhythmia Detection Based on Fuzzy Neural Network, IEEE Transactions on Biomedical Engineering, Vol. 48, No. 9, pp [17] Bortolan et. al. (2005), Comparison of four methods for premature ventricular contraction and normal beat clustering, Computers in Cardiology, September pp [18] S. M. Jadhav et. al. (2010), Artificial Neural Network Based Cardiac Arrhythmia Classification Using ECG Signal Data, in Proc. Int Electronics and Information Engineering (ICEIE) Conf. On, vol. 1 [19] Shivajirao Jadhav et. al. (2010), Modular Neural Network based Arrhythmia Classification System using ECG Signal Data, International Journal of Information Technology & Knowledge Management (ISSN ) Vol-IV, Issue-I 9

10 [20] Kemal Polat et. al. (2006), A new method to medical diagnosis: Artificial immune recognition system (AIRS) with fuzzy weighted pre-processing and application to ECG arrhythmia, Expert Systems with Applications, Vol. 31, Issue 2, pp [21] Shivajirao Jadhav et. al. (2011), Artificial Neural Network Based Cardiac Arrhythmia Disease Diagnosis, 2011 International Conference on Process Automation, Control and Computing Coimbatore India, Pages 1-6 [22] Shivajirao Jadhav et. al. (2010), Arrhythmia Disease Classification using Artificial Neural Network, 2010 IEEE International Conference on Computational Intelligence and Computing Research, Coimbatore India, pp. 1-4 [23] Shivajirao Jadhav et. al. (2010), ECG Arrhythmia Classification using Modular Neural Network Model, in Proc. IEEE EMBS Conference on Biomedical Engineering & Sciences, Kuala Lumpur, Malaysia, pp [24] Shivajirao Jadhav et. al. (2010), Generalized Feedforward Neural Network based Cardiac Arrhythmia Classification from ECG Signal Data, th International Conference on Advanced Information Management and Service (IMS) with ICMIA, Seoul South Korea, pp [25] Shivajirao Jadhav et. al. (2011), Foetal State Classification from Cardiotocography Signal Recordings Data using Multilayer perceptron Artificial Neural Network Model, International Joint Conference on Advances in Signal Processing and Information Technology, (Accepted) [26] Jadhav S. et. al. (2011), Modular neural network model based foetal state classification, IEEE International Conference on Bioinformatics and Biomedicine Workshops pp [27] Sang-Hong et. al., Extracting Input Features and Fuzzy Rules for Detecting ECG Arrhythmia Based on NEWFM, International Conference on Intelligent and Advanced Systems, Division of Software, Kyungwon University, Korea [28] Alaa M. Elsayad (2009), Classification of ECG arrhythmia Using Learning Vector Quantization Neural Networks, International Conference on Computer Engineering & Systems, pp [29] Uyar A., and Gurgen F. (2007), "Arrhythmia Classification Using Serial Fusion of Support Vector Machines and Logistic Regression," 4th IEEE Workshop on Intelligent Data Acquisition and Advanced Computing Systems: Technology and Applications,, vol., no., pp [30] Ali Mirza Mehmood and Mrithyunjaya Rao Kuppa (2012), A novel pruning approach using expert knowledge for data-specific pruning, Engineering with Computers pp [31] Bishop, C.M. (1995), Neural Networks for Pattern Recognition, Oxford University Press. [32] (Downloaded date: 25th January, 2012) 10

11 Shivajirao M. Jadhav has received B.E. (Computer Science & Engineering) in 1993 from SGGS College of Engineering and Technology, Nanded India and M.E. (Computer Engineering) in 2003 from VJTI, Mumbai India. He is presently working as Associate Professor of Information Technology Department at Dr. Babasaheb Ambedkar Technological University, Lonere, Raigad, India. He is doing his Ph.D. study in Computer Engineering Department in the same University through UGC s Faculty Improvement Program (FIP. His area of interest includes signal data analysis using machine learning and soft computing techniques, real time distributed databases, computer networks, artificial neural networks and its applications to medical decision support systems. Dr. Sanjay L. Nalbalwar has received B.E. (Computer Science & Engineering) in 1990 and M.E. (Electronics Engineering) in 1995 from SGGS Institute of Engineering and Technology, Nanded, India. He has completed Ph.D. from IIT Delhi in He has around 21 years of teaching experience and is working as Associate Professor of Electronics & Telecommunication Engineering Department at Dr. Babasaheb Ambedkar Technological University, Lonere, District Raigad, India. His area of interest includes Multirate signal processing and Wavelet, stochastic process modeling. Dr. Ashok A. Ghatol born on 29th August, 1948 is the Campus Director of K. J. Educational Institutions, Kndhwa, Pune and Former Vice-Chancellor of Dr. Babasaheb Ambedkar Technological University, Lonere-Raigad, India. Before Joining as Vice-Chancellor, he was Principle at College of Engineering, Pune during and Principle at Government College Engineering, Amravati during He holds a B.E (Electrical), Nagpur University, M. Tech. (Electrical) and Ph.D. in Electrical Engineering from I.I.T., Mumbai in the field of High Power Semiconductor Devices. Over the last 33 years, he has been actively involved in the field of Technical Education as Academician, Researcher, Teacher, Planner and Administrator. Under his able and effective leadership, the Dr. Babasaheb Ambedkar Technological Lonere-Raigad University researched to a newer height and gained a feather in cap by receiving the UGC recognition under section 12(B), started receiving grants from UGC under various schemes. Taking into consideration his active involvement in technical education, AICTE also entrusted a responsibility to Act as Chairman of Western Regional Council. He was Vice-Chairman of ISRE for advising and assisting the council on issues and strategies on quality and quantity in the technical education. He was adjusted as Eminent Executive Member of Indian Society of technical Education, New Delhi. 11

Comparison of MLP and RBF neural networks for Prediction of ECG Signals

Comparison of MLP and RBF neural networks for Prediction of ECG Signals 124 Comparison of MLP and RBF neural networks for Prediction of ECG Signals Ali Sadr 1, Najmeh Mohsenifar 2, Raziyeh Sadat Okhovat 3 Department Of electrical engineering Iran University of Science and

More information

Identification of Cardiac Arrhythmias using ECG

Identification of Cardiac Arrhythmias using ECG Pooja Sharma,Int.J.Computer Technology & Applications,Vol 3 (1), 293-297 Identification of Cardiac Arrhythmias using ECG Pooja Sharma Pooja15bhilai@gmail.com RCET Bhilai Ms.Lakhwinder Kaur lakhwinder20063@yahoo.com

More information

IJITKMI Volume 7 Number 2 Jan June 2014 pp (ISSN ) Impact of attribute selection on the accuracy of Multilayer Perceptron

IJITKMI Volume 7 Number 2 Jan June 2014 pp (ISSN ) Impact of attribute selection on the accuracy of Multilayer Perceptron Impact of attribute selection on the accuracy of Multilayer Perceptron Niket Kumar Choudhary 1, Yogita Shinde 2, Rajeswari Kannan 3, Vaithiyanathan Venkatraman 4 1,2 Dept. of Computer Engineering, Pimpri-Chinchwad

More information

A linear Multi-Layer Perceptron for identifying harmonic contents of biomedical signals

A linear Multi-Layer Perceptron for identifying harmonic contents of biomedical signals A linear Multi-Layer Perceptron for identifying harmonic contents of biomedical signals Thien Minh Nguyen 1 and Patrice Wira 1 Université de Haute Alsace, Laboratoire MIPS, Mulhouse, France, {thien-minh.nguyen,

More information

DIAGNOSIS OF STATOR FAULT IN ASYNCHRONOUS MACHINE USING SOFT COMPUTING METHODS

DIAGNOSIS OF STATOR FAULT IN ASYNCHRONOUS MACHINE USING SOFT COMPUTING METHODS DIAGNOSIS OF STATOR FAULT IN ASYNCHRONOUS MACHINE USING SOFT COMPUTING METHODS K. Vinoth Kumar 1, S. Suresh Kumar 2, A. Immanuel Selvakumar 1 and Vicky Jose 1 1 Department of EEE, School of Electrical

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

Sanjivani Bhande 1, Dr. Mrs.RanjanaRaut 2

Sanjivani Bhande 1, Dr. Mrs.RanjanaRaut 2 Intelligent Decision Support System for Parkinson Diseases Using Softcomputing Sanjivani Bhande 1, Dr. Mrs.RanjanaRaut 2 1 Dept. of Electronics Engg.,B.D.C.E., Wardha, Maharashtra, India 2 Head CIC, SGB,

More information

Comparing The Performance Of MLP With One Hidden Layer And MLP With Two Hidden Layers On Mammography Mass Dataset

Comparing The Performance Of MLP With One Hidden Layer And MLP With Two Hidden Layers On Mammography Mass Dataset Comparing The Performance Of MLP With One Hidden Layer And MLP With Two Hidden Layers On Mammography Mass Dataset Venu Azad Department of Computer Science, Govt. girls P.G. College Sec 14, Gurgaon, Haryana,

More information

Artificial Neural Network classifier for heartbeat arrhythmia detection

Artificial Neural Network classifier for heartbeat arrhythmia detection Artificial Neural Network classifier for heartbeat arrhythmia detection Hèla LASSOUED #1, Raouf KETATA *2 # Physical Engineering and Instrumentation Department, Energy, Robotics, Control and Optimization

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

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

International Journal of Emerging Technologies in Computational and Applied Sciences (IJETCAS)

International Journal of Emerging Technologies in Computational and Applied Sciences (IJETCAS) International Association of Scientific Innovation and Research (IASIR) (An Association Unifying the Sciences, Engineering, and Applied Research) International Journal of Emerging Technologies in Computational

More information

NEURAL NETWORK ARCHITECTURE DESIGN FOR FEATURE EXTRACTION OF ECG BY WAVELET

NEURAL NETWORK ARCHITECTURE DESIGN FOR FEATURE EXTRACTION OF ECG BY WAVELET NEURAL NETWORK ARCHITECTURE DESIGN FOR FEATURE EXTRACTION OF ECG BY WAVELET Priyanka Agrawal student, electrical, mits, rgpv, gwalior, mp 4745, india Dr. A. K. Wadhwani professor, electrical,mits, rgpv

More information

COMPARATIVE ANALYSIS OF ACCURACY ON MISSING DATA USING MLP AND RBF METHOD V.B. Kamble 1, S.N. Deshmukh 2 1

COMPARATIVE ANALYSIS OF ACCURACY ON MISSING DATA USING MLP AND RBF METHOD V.B. Kamble 1, S.N. Deshmukh 2 1 COMPARATIVE ANALYSIS OF ACCURACY ON MISSING DATA USING MLP AND RBF METHOD V.B. Kamble 1, S.N. Deshmukh 2 1 P.E.S. College of Engineering, Aurangabad. (M.S.) India. 2 Dr. Babasaheb Ambedkar Marathwada University,

More information

Data Mining for Healthcare Data: A Comparison of Neural Networks Algorithms

Data Mining for Healthcare Data: A Comparison of Neural Networks Algorithms Data Mining for Healthcare 10 Data Mining for Healthcare Data: A Comparison of Neural Networks Algorithms 1 Debby E. Sondakh Universitas Klabat, Jln. Arnold Mononutu, Airmadidi Minahasa Utara 1 Program

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

NNC for Power Electronics Converter Circuits: Design & Simulation

NNC for Power Electronics Converter Circuits: Design & Simulation NNC for Power Electronics Converter Circuits: Design & Simulation 1 Ms. Kashmira J. Rathi, 2 Dr. M. S. Ali Abstract: AI-based control techniques have been very popular since the beginning of the 90s. Usually,

More information

Classification of Voltage Sag Using Multi-resolution Analysis and Support Vector Machine

Classification of Voltage Sag Using Multi-resolution Analysis and Support Vector Machine Journal of Clean Energy Technologies, Vol. 4, No. 3, May 2016 Classification of Voltage Sag Using Multi-resolution Analysis and Support Vector Machine Hanim Ismail, Zuhaina Zakaria, and Noraliza Hamzah

More information

MULTIPLE CLASSIFIERS FOR ELECTRONIC NOSE DATA

MULTIPLE CLASSIFIERS FOR ELECTRONIC NOSE DATA MULTIPLE CLASSIFIERS FOR ELECTRONIC NOSE DATA M. Pardo, G. Sberveglieri INFM and University of Brescia Gas Sensor Lab, Dept. of Chemistry and Physics for Materials Via Valotti 9-25133 Brescia Italy D.

More information

Classification of Cardiac Arrhythmia using Hybrid Technology of Fast Discrete Stockwell-Transform (FDST) and Self Organising Map

Classification of Cardiac Arrhythmia using Hybrid Technology of Fast Discrete Stockwell-Transform (FDST) and Self Organising Map Classification of Cardiac Arrhythmia using Hybrid Technology of Fast Discrete Stockwell-Transform (FDST) and Self Organising Map Raghuvendra Pratap Tripathi 1, G.R. Mishra 1, Dinesh Bhatia 2 *, T.K.Sinha

More information

The Automatic Classification Problem. Perceptrons, SVMs, and Friends: Some Discriminative Models for Classification

The Automatic Classification Problem. Perceptrons, SVMs, and Friends: Some Discriminative Models for Classification Perceptrons, SVMs, and Friends: Some Discriminative Models for Classification Parallel to AIMA 8., 8., 8.6.3, 8.9 The Automatic Classification Problem Assign object/event or sequence of objects/events

More information

Improvement of Classical Wavelet Network over ANN in Image Compression

Improvement of Classical Wavelet Network over ANN in Image Compression International Journal of Engineering and Technical Research (IJETR) ISSN: 2321-0869 (O) 2454-4698 (P), Volume-7, Issue-5, May 2017 Improvement of Classical Wavelet Network over ANN in Image Compression

More information

MINE 432 Industrial Automation and Robotics

MINE 432 Industrial Automation and Robotics 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

More information

Classification Experiments for Number Plate Recognition Data Set Using Weka

Classification Experiments for Number Plate Recognition Data Set Using Weka Classification Experiments for Number Plate Recognition Data Set Using Weka Atul Kumar 1, Sunila Godara 2 1 Department of Computer Science and Engineering Guru Jambheshwar University of Science and Technology

More information

COMPARISON OF MACHINE LEARNING ALGORITHMS IN WEKA

COMPARISON OF MACHINE LEARNING ALGORITHMS IN WEKA COMPARISON OF MACHINE LEARNING ALGORITHMS IN WEKA Clive Almeida 1, Mevito Gonsalves 2 & Manimozhi R 3 International Journal of Latest Trends in Engineering and Technology Special Issue SACAIM 2017, pp.

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

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

A DWT Approach for Detection and Classification of Transmission Line Faults

A DWT Approach for Detection and Classification of Transmission Line Faults IJIRST International Journal for Innovative Research in Science & Technology Volume 3 Issue 02 July 2016 ISSN (online): 2349-6010 A DWT Approach for Detection and Classification of Transmission Line Faults

More information

Research on Hand Gesture Recognition Using Convolutional Neural Network

Research on Hand Gesture Recognition Using Convolutional Neural Network Research on Hand Gesture Recognition Using Convolutional Neural Network Tian Zhaoyang a, Cheng Lee Lung b a Department of Electronic Engineering, City University of Hong Kong, Hong Kong, China E-mail address:

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

Design of a VLSI Hamming Neural Network For arrhythmia classification

Design of a VLSI Hamming Neural Network For arrhythmia classification First Joint Congress on Fuzzy and Intelligent Systems Ferdowsi University of Mashhad, Iran 9-31 Aug 007 Intelligent Systems Scientific Society of Iran Design of a VLSI Hamming Neural Network For arrhythmia

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

An Approach to Detect QRS Complex Using Backpropagation Neural Network

An Approach to Detect QRS Complex Using Backpropagation Neural Network An Approach to Detect QRS Complex Using Backpropagation Neural Network MAMUN B.I. REAZ 1, MUHAMMAD I. IBRAHIMY 2 and ROSMINAZUIN A. RAHIM 2 1 Faculty of Engineering, Multimedia University, 63100 Cyberjaya,

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

Neural Filters: MLP VIS-A-VIS RBF Network

Neural Filters: MLP VIS-A-VIS RBF Network 6th WSEAS International Conference on CIRCUITS, SYSTEMS, ELECTRONICS,CONTROL & SIGNAL PROCESSING, Cairo, Egypt, Dec 29-31, 2007 432 Neural Filters: MLP VIS-A-VIS RBF Network V. R. MANKAR, DR. A. A. GHATOL,

More information

A Novel Approach for Handling Imbalanced Data in Medical Diagnosis using Undersampling Technique

A Novel Approach for Handling Imbalanced Data in Medical Diagnosis using Undersampling Technique A Novel Approach for Handling Imbalanced Data in Medical Diagnosis using Undersampling Technique Varsha Babar ME Student, Department of Computer Engineering Dr. D. Y. Patil School of Engineering and Technology

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

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

Target Classification in Forward Scattering Radar in Noisy Environment

Target Classification in Forward Scattering Radar in Noisy Environment Target Classification in Forward Scattering Radar in Noisy Environment Mohamed Khala Alla H.M, Mohamed Kanona and Ashraf Gasim Elsid School of telecommunication and space technology, Future university

More information

Biomedical Signal Processing and Applications

Biomedical Signal Processing and Applications Proceedings of the 2010 International Conference on Industrial Engineering and Operations Management Dhaka, Bangladesh, January 9 10, 2010 Biomedical Signal Processing and Applications Muhammad Ibn Ibrahimy

More information

A HYBRID ALGORITHM FOR FACE RECOGNITION USING PCA, LDA AND ANN

A HYBRID ALGORITHM FOR FACE RECOGNITION USING PCA, LDA AND ANN International Journal of Mechanical Engineering and Technology (IJMET) Volume 9, Issue 3, March 2018, pp. 85 93, Article ID: IJMET_09_03_010 Available online at http://www.iaeme.com/ijmet/issues.asp?jtype=ijmet&vtype=9&itype=3

More information

DRILLING RATE OF PENETRATION PREDICTION USING ARTIFICIAL NEURAL NETWORK: A CASE STUDY OF ONE OF IRANIAN SOUTHERN OIL FIELDS

DRILLING RATE OF PENETRATION PREDICTION USING ARTIFICIAL NEURAL NETWORK: A CASE STUDY OF ONE OF IRANIAN SOUTHERN OIL FIELDS 21 UDC 622.244.6.05:681.3.06. DRILLING RATE OF PENETRATION PREDICTION USING ARTIFICIAL NEURAL NETWORK: A CASE STUDY OF ONE OF IRANIAN SOUTHERN OIL FIELDS Mehran Monazami MSc Student, Ahwaz Faculty of Petroleum,

More information

Stock Price Prediction Using Multilayer Perceptron Neural Network by Monitoring Frog Leaping Algorithm

Stock Price Prediction Using Multilayer Perceptron Neural Network by Monitoring Frog Leaping Algorithm Stock Price Prediction Using Multilayer Perceptron Neural Network by Monitoring Frog Leaping Algorithm Ahdieh Rahimi Garakani Department of Computer South Tehran Branch Islamic Azad University Tehran,

More information

Motion Recognition in Wearable Sensor System Using an Ensemble Artificial Neuro-Molecular System

Motion Recognition in Wearable Sensor System Using an Ensemble Artificial Neuro-Molecular System Motion Recognition in Wearable Sensor System Using an Ensemble Artificial Neuro-Molecular System Si-Jung Ryu and Jong-Hwan Kim Department of Electrical Engineering, KAIST, 355 Gwahangno, Yuseong-gu, Daejeon,

More information

Initialisation improvement in engineering feedforward ANN models.

Initialisation improvement in engineering feedforward ANN models. Initialisation improvement in engineering feedforward ANN models. A. Krimpenis and G.-C. Vosniakos National Technical University of Athens, School of Mechanical Engineering, Manufacturing Technology Division,

More information

Number Plate Detection with a Multi-Convolutional Neural Network Approach with Optical Character Recognition for Mobile Devices

Number Plate Detection with a Multi-Convolutional Neural Network Approach with Optical Character Recognition for Mobile Devices J Inf Process Syst, Vol.12, No.1, pp.100~108, March 2016 http://dx.doi.org/10.3745/jips.04.0022 ISSN 1976-913X (Print) ISSN 2092-805X (Electronic) Number Plate Detection with a Multi-Convolutional Neural

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

Color Image Segmentation Using K-Means Clustering and Otsu s Adaptive Thresholding

Color Image Segmentation Using K-Means Clustering and Otsu s Adaptive Thresholding Color Image Segmentation Using K-Means Clustering and Otsu s Adaptive Thresholding Vijay Jumb, Mandar Sohani, Avinash Shrivas Abstract In this paper, an approach for color image segmentation is presented.

More information

Comparative Study of Neural Networks for Face Recognition

Comparative Study of Neural Networks for Face Recognition 65 Comparative Study of Neural Networks for Face Recognition 1 Er. Harpreet Singh Dalla, 2 Mr. Deepak Aggarwal 1 I/C Academics, Patiala Institute of Engg. & Tech. For Women, Patiala, Punjab, India 2 A.P.,Baba

More information

PERFORMANCE ANALYSIS OF MLP AND SVM BASED CLASSIFIERS FOR HUMAN ACTIVITY RECOGNITION USING SMARTPHONE SENSORS DATA

PERFORMANCE ANALYSIS OF MLP AND SVM BASED CLASSIFIERS FOR HUMAN ACTIVITY RECOGNITION USING SMARTPHONE SENSORS DATA PERFORMANCE ANALYSIS OF MLP AND SVM BASED CLASSIFIERS FOR HUMAN ACTIVITY RECOGNITION USING SMARTPHONE SENSORS DATA K.H. Walse 1, R.V. Dharaskar 2, V. M. Thakare 3 1 Dept. of Computer Science & Engineering,

More information

Pattern Recognition Techniques Applied to Electric Power Signal Processing Ghazi Bousaleh, Mohamad Darwiche, Fahed Hassoun

Pattern Recognition Techniques Applied to Electric Power Signal Processing Ghazi Bousaleh, Mohamad Darwiche, Fahed Hassoun Pattern Recognition Techniques Applied to Electric Power Signal Processing Ghazi Bousaleh, Mohamad Darwiche, Fahed Hassoun Abstract: We propose in this paper an approach whose main objective is to detect

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

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

A Novel Fuzzy Neural Network Based Distance Relaying Scheme

A Novel Fuzzy Neural Network Based Distance Relaying Scheme 902 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 15, NO. 3, JULY 2000 A Novel Fuzzy Neural Network Based Distance Relaying Scheme P. K. Dash, A. K. Pradhan, and G. Panda Abstract This paper presents a new

More information

COMPRESSIVE SENSING BASED ECG MONITORING WITH EFFECTIVE AF DETECTION. Hung Chi Kuo, Yu Min Lin and An Yeu (Andy) Wu

COMPRESSIVE SENSING BASED ECG MONITORING WITH EFFECTIVE AF DETECTION. Hung Chi Kuo, Yu Min Lin and An Yeu (Andy) Wu COMPRESSIVESESIGBASEDMOITORIGWITHEFFECTIVEDETECTIO Hung ChiKuo,Yu MinLinandAn Yeu(Andy)Wu Graduate Institute of Electronics Engineering, ational Taiwan University, Taipei, 06, Taiwan, R.O.C. {charleykuo,

More information

A Machine Learning Technique for Person Identification using ECG Signals

A Machine Learning Technique for Person Identification using ECG Signals A Machine Learning Technique for Person Identification using ECG Signals M. BASSIOUNI*, W.KHALEFA**, E.A. El-DAHSHAN* and ABDEL-BADEEH. M. SALEM** **Faculty of Computer and Information Science, Ain shams

More information

Performance Evaluation of Percent Root Mean Square Difference for ECG Signals Compression

Performance Evaluation of Percent Root Mean Square Difference for ECG Signals Compression Performance Evaluation of Percent Root Mean Square Difference for ECG Signals Compression Rizwan Javaid* Faculty of Information Science and Technology, Multimedia University, Jalan Ayer Keroh Lama, 75450

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

Fault Detection in Double Circuit Transmission Lines Using ANN

Fault Detection in Double Circuit Transmission Lines Using ANN International Journal of Research in Advent Technology, Vol.3, No.8, August 25 E-ISSN: 232-9637 Fault Detection in Double Circuit Transmission Lines Using ANN Chhavi Gupta, Chetan Bhardwaj 2 U.T.U Dehradun,

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

International Journal of Innovative Research in Engineering Science and Technology APRIL 2018 ISSN X

International Journal of Innovative Research in Engineering Science and Technology APRIL 2018 ISSN X HIGH DYNAMIC RANGE OF MULTISPECTRAL ACQUISITION USING SPATIAL IMAGES 1 M.Kavitha, M.Tech., 2 N.Kannan, M.E., and 3 S.Dharanya, M.E., 1 Assistant Professor/ CSE, Dhirajlal Gandhi College of Technology,

More information

VISUALISING THE SYNERGY OF ECG, EMG SIGNALS USING SOM

VISUALISING THE SYNERGY OF ECG, EMG SIGNALS USING SOM VISUALISING THE SYNERGY OF ECG, EMG SIGNALS USING SOM Therese Yamuna Mahesh Dept. of Electronics and communication Engineering Amal Jyothi college of Engineering Kerala,India Email: Abstract In this paper

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

Dynamic Throttle Estimation by Machine Learning from Professionals

Dynamic Throttle Estimation by Machine Learning from Professionals Dynamic Throttle Estimation by Machine Learning from Professionals Nathan Spielberg and John Alsterda Department of Mechanical Engineering, Stanford University Abstract To increase the capabilities of

More information

INTERNATIONAL JOURNAL OF ELECTRONICS AND COMMUNICATION ENGINEERING & TECHNOLOGY (IJECET)

INTERNATIONAL JOURNAL OF ELECTRONICS AND COMMUNICATION ENGINEERING & TECHNOLOGY (IJECET) INTERNATIONAL JOURNAL OF ELECTRONICS AND COMMUNICATION ENGINEERING & TECHNOLOGY (IJECET) International Journal of Electronics and Communication Engineering & Technology (IJECET), ISSN 0976 6464(Print),

More information

Application of Artificial Neural Networks for Identification of Unbalance and Looseness in Rotor Bearing Systems

Application of Artificial Neural Networks for Identification of Unbalance and Looseness in Rotor Bearing Systems International Journal of Applied Science and Engineering 213. 11, 1: 69-84 Application of Artificial Neural Networks for Identification of Unbalance and Looseness in Rotor Bearing Systems M. Chandra Sekhar

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

Application of Generalised Regression Neural Networks in Lossless Data Compression

Application of Generalised Regression Neural Networks in Lossless Data Compression Application of Generalised Regression Neural Networks in Lossless Data Compression R. LOGESWARAN Centre for Multimedia Communications, Faculty of Engineering, Multimedia University, 63100 Cyberjaya MALAYSIA

More information

Classifying the Brain's Motor Activity via Deep Learning

Classifying the Brain's Motor Activity via Deep Learning Final Report Classifying the Brain's Motor Activity via Deep Learning Tania Morimoto & Sean Sketch Motivation Over 50 million Americans suffer from mobility or dexterity impairments. Over the past few

More information

Evolutionary Artificial Neural Networks For Medical Data Classification

Evolutionary Artificial Neural Networks For Medical Data Classification Evolutionary Artificial Neural Networks For Medical Data Classification GRADUATE PROJECT Submitted to the Faculty of the Department of Computing Sciences Texas A&M University-Corpus Christi Corpus Christi,

More information

Adaptive Feature Analysis Based SAR Image Classification

Adaptive Feature Analysis Based SAR Image Classification I J C T A, 10(9), 2017, pp. 973-977 International Science Press ISSN: 0974-5572 Adaptive Feature Analysis Based SAR Image Classification Debabrata Samanta*, Abul Hasnat** and Mousumi Paul*** ABSTRACT SAR

More information

NEURALNETWORK BASED CLASSIFICATION OF LASER-DOPPLER FLOWMETRY SIGNALS

NEURALNETWORK BASED CLASSIFICATION OF LASER-DOPPLER FLOWMETRY SIGNALS NEURALNETWORK BASED CLASSIFICATION OF LASER-DOPPLER FLOWMETRY SIGNALS N. G. Panagiotidis, A. Delopoulos and S. D. Kollias National Technical University of Athens Department of Electrical and Computer Engineering

More information

VIBRATION BASED DIAGNOSTIC OF STEAM TURBINE FAULTS USING EXTREME LEARNING MACHINE

VIBRATION BASED DIAGNOSTIC OF STEAM TURBINE FAULTS USING EXTREME LEARNING MACHINE VIBRATION BASED DIAGNOSTIC OF STEAM TURBINE FAULTS USING EXTREME LEARNING MACHINE DHULFIQAR MOHAMMED 1, FIRAS B. ISMAIL 2, YAZAN ALJEROUDI 3,* 1 Master student in Universiti Tenaga Nasional, Malaysia 2

More information

IMPLEMENTATION OF NEURAL NETWORK IN ENERGY SAVING OF INDUCTION MOTOR DRIVES WITH INDIRECT VECTOR CONTROL

IMPLEMENTATION OF NEURAL NETWORK IN ENERGY SAVING OF INDUCTION MOTOR DRIVES WITH INDIRECT VECTOR CONTROL IMPLEMENTATION OF NEURAL NETWORK IN ENERGY SAVING OF INDUCTION MOTOR DRIVES WITH INDIRECT VECTOR CONTROL * A. K. Sharma, ** R. A. Gupta, and *** Laxmi Srivastava * Department of Electrical Engineering,

More information

ISSN: [Jha* et al., 5(12): December, 2016] Impact Factor: 4.116

ISSN: [Jha* et al., 5(12): December, 2016] Impact Factor: 4.116 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY ANALYSIS OF DIRECTIVITY AND BANDWIDTH OF COAXIAL FEED SQUARE MICROSTRIP PATCH ANTENNA USING ARTIFICIAL NEURAL NETWORK Rohit Jha*,

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

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

INTEGRATED APPROACH TO ECG SIGNAL PROCESSING

INTEGRATED APPROACH TO ECG SIGNAL PROCESSING International Journal on Information Sciences and Computing, Vol. 5, No.1, January 2011 13 INTEGRATED APPROACH TO ECG SIGNAL PROCESSING Manpreet Kaur 1, Ubhi J.S. 2, Birmohan Singh 3, Seema 4 1 Department

More information

AN ANALYSIS OF SPEECH RECOGNITION PERFORMANCE BASED UPON NETWORK LAYERS AND TRANSFER FUNCTIONS

AN ANALYSIS OF SPEECH RECOGNITION PERFORMANCE BASED UPON NETWORK LAYERS AND TRANSFER FUNCTIONS AN ANALYSIS OF SPEECH RECOGNITION PERFORMANCE BASED UPON NETWORK LAYERS AND TRANSFER FUNCTIONS Kuldeep Kumar 1, R. K. Aggarwal 1 and Ankita Jain 2 1 Department of Computer Engineering, National Institute

More information

Content Based Image Retrieval Using Color Histogram

Content Based Image Retrieval Using Color Histogram Content Based Image Retrieval Using Color Histogram Nitin Jain Assistant Professor, Lokmanya Tilak College of Engineering, Navi Mumbai, India. Dr. S. S. Salankar Professor, G.H. Raisoni College of Engineering,

More information

INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY

INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY [Sharma, 2(4): April, 2013] ISSN: 2277-9655 IJESRT INTERNATIONAL JOURNAL OF ENGINEERING SCIENCES & RESEARCH TECHNOLOGY Minimization of Interferences in ECG Signal Using a Novel Adaptive Filtering Approach

More information

This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and

This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and This article appeared in a journal published by Elsevier. The attached copy is furnished to the author for internal non-commercial research and education use, including for instruction at the authors institution

More information

MURDOCH RESEARCH REPOSITORY

MURDOCH RESEARCH REPOSITORY MURDOCH RESEARCH REPOSITORY http://dx.doi.org/10.1109/asspcc.2000.882494 Jan, T., Zaknich, A. and Attikiouzel, Y. (2000) Separation of signals with overlapping spectra using signal characterisation and

More information

Norsk Regnesentral (NR) Norwegian Computing Center

Norsk Regnesentral (NR) Norwegian Computing Center Norsk Regnesentral (NR) Norwegian Computing Center Petter Abrahamsen Joining Forces 2018 www.nr.no NUSSE: - 512 9-digit numbers - 200 additions/second Our latest servers: - Four Titan X GPUs - 14 336 cores

More information

Detection and classification of faults on 220 KV transmission line using wavelet transform and neural network

Detection and classification of faults on 220 KV transmission line using wavelet transform and neural network International Journal of Smart Grid and Clean Energy Detection and classification of faults on 220 KV transmission line using wavelet transform and neural network R P Hasabe *, A P Vaidya Electrical Engineering

More information

A Comparison of Particle Swarm Optimization and Gradient Descent in Training Wavelet Neural Network to Predict DGPS Corrections

A Comparison of Particle Swarm Optimization and Gradient Descent in Training Wavelet Neural Network to Predict DGPS Corrections Proceedings of the World Congress on Engineering and Computer Science 00 Vol I WCECS 00, October 0-, 00, San Francisco, USA A Comparison of Particle Swarm Optimization and Gradient Descent in Training

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 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

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

SIMULATION-BASED MODEL CONTROL USING STATIC HAND GESTURES IN MATLAB

SIMULATION-BASED MODEL CONTROL USING STATIC HAND GESTURES IN MATLAB SIMULATION-BASED MODEL CONTROL USING STATIC HAND GESTURES IN MATLAB S. Kajan, J. Goga Institute of Robotics and Cybernetics, Faculty of Electrical Engineering and Information Technology, Slovak University

More information

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY

INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY INTERNATIONAL JOURNAL OF PURE AND APPLIED RESEARCH IN ENGINEERING AND TECHNOLOGY A PATH FOR HORIZING YOUR INNOVATIVE WORK NEURAL NETWORK TECHNIQUE FOR MONITORING AND CONTROLLING IC- ENGINE PARAMETER NITINKUMAR

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

Adaptive Detection and Classification of Life Threatening Arrhythmias in ECG Signals Using Neuro SVM Agnesa.A 1 and Shally.S.P 2

Adaptive Detection and Classification of Life Threatening Arrhythmias in ECG Signals Using Neuro SVM Agnesa.A 1 and Shally.S.P 2 Adaptive Detection and Classification of Life Threatening Arrhythmias in ECG Signals Using Neuro SVM Agnesa.A and Shally.S.P 2 M.E. Communication Systems, DMI College of Engineering, Palanchur, Chennai-6

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

SSB Debate: Model-based Inference vs. Machine Learning

SSB Debate: Model-based Inference vs. Machine Learning SSB Debate: Model-based nference vs. Machine Learning June 3, 2018 SSB 2018 June 3, 2018 1 / 20 Machine learning in the biological sciences SSB 2018 June 3, 2018 2 / 20 Machine learning in the biological

More information

Image Processing and Artificial Neural Network techniques in Identifying Defects of Textile Products

Image Processing and Artificial Neural Network techniques in Identifying Defects of Textile Products Image Processing and Artificial Neural Network techniques in Identifying Defects of Textile Products Mrs.P.Banumathi 1, Ms.T.S.Ushanandhini 2 1 Associate Professor, Department of Computer Science and Engineering,

More information

280 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 23, NO. 1, JANUARY 2008

280 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 23, NO. 1, JANUARY 2008 280 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 23, NO. 1, JANUARY 2008 Detection and Classification of Power Quality Disturbances Using S-Transform and Probabilistic Neural Network S. Mishra, Senior Member,

More information

SLIC based Hand Gesture Recognition with Artificial Neural Network

SLIC based Hand Gesture Recognition with Artificial Neural Network IJSTE - International Journal of Science Technology & Engineering Volume 3 Issue 03 September 2016 ISSN (online): 2349-784X SLIC based Hand Gesture Recognition with Artificial Neural Network Harpreet Kaur

More information

The Use of Neural Network to Recognize the Parts of the Computer Motherboard

The Use of Neural Network to Recognize the Parts of the Computer Motherboard Journal of Computer Sciences 1 (4 ): 477-481, 2005 ISSN 1549-3636 Science Publications, 2005 The Use of Neural Network to Recognize the Parts of the Computer Motherboard Abbas M. Ali, S.D.Gore and Musaab

More information

ECG Data Compression

ECG Data Compression International Journal of Computer Applications (97 8887) National conference on Electronics and Communication (NCEC 1) ECG Data Compression Swati More M.Tech in Biomedical Electronics & Industrial Instrumentation,PDA

More information