A Neural Network Approach for Insulin Regime and Dose Adjustment in Type 1 Diabetes

Size: px
Start display at page:

Download "A Neural Network Approach for Insulin Regime and Dose Adjustment in Type 1 Diabetes"

Transcription

1 DIABETES TECHNOLOGY & THERAPEUTICS Volume 2, Number 3, 2000 Mary Ann Liebert, Inc. A Neural Network Approach for Insulin Regime and Dose Adjustment in Type 1 Diabetes STAVROULA G. MOUGIAKAKOU, M.Sc. and KONSTANTINA S. NIKITA, Ph.D., M.D. ABSTRACT Background: A decision support system based on a neural network approach is proposed to advise on insulin regime and dose adjustment for type 1 diabetes patients. Method: The system consists of two feed-forward neural networks, trained with the back-propagation algorithm with momentum and adaptive learning rate. The input to the system consists of patient s glucose levels, insulin intake, and observed hypoglycemia symptoms during a short time period. The output of the first neural network provides the insulin regime, which is applied as input to the second neural network to estimate the appropriate insulin doses for a short time period. Results: The system s ability in order to recommend on insulin regime is excellent, while its performance in adjusting the insulin dosages for a specific patient is highly dependent on the data set used during the training procedure. Conclusions: Despite the limitations of computer-based approaches, this study shows that artificial neural networks can assist diabetes patients in insulin adjustment. INTRODUCTION ASIGNIFICANT NUMBER OF DIABETES PATIENTS (type 1 diabetes patients) are dependent on insulin to bring their blood glucose in normal range and avoid short- and long-term complications. 1 During the last years, many research efforts have been devoted to the development of decision support systems for the simplification of type 1 diabetes patients lives, using rule-based approach, 2 mathematical models, 3,4 time-series analysis, 5 and causal probabilistic networks. 6,7 The majority of these decision support systems have been used for educational purposes, since they are not able to accurately describe such a complex, nonlinear system as the metabolic system. The application of neural networks for simulation of complex systems has been successful in many research fields. 8 In general, artificial neural networks are applied in situations that cannot be easily described with rules or mathematical algorithms. In medicine, neural networks have been used for image and signal processing for diagnostic purposes, 9,10 and as decision support systems. 11,12 In the field of diabetes mellitus, factors such as the information intensive nature of diabetes management, the large number of variables to model, and the difficulty in modeling glucose metabolism, justify the need for determining hidden patterns or algorithms through neural networks techniques. In this context, neural networks have been used for the closed-loop control of glucose using subcutaneous glucose measurements and subcutaneous monomeric insulin analogues. 13 Moreover, the use of a neural network as a decision support system has been presented for Department of Electrical and Computer Engineering, National Technical University of Athens, Greece. 381

2 382 MOUGIAKAKOU AND NIKITA the system to provide advice on insulin regime and dose adjustment is assessed using data from 21 patients, suffering from type 1 diabetes. BACKGROUND FIG. 1. The model of a typical neuron or node. insulin regime prescription, 14 while the combined use of compartmental models and neural networks has been proposed in order to model blood glucose metabolism. 15 Recently, a hybrid artificial intelligence technique combining the principal component method and a feed-forward neural network has been introduced by Liszka-Hackzell 16 for predicting blood glucose levels in patients with diabetes. In this paper, artificial neural networks are used in order to recommend on the appropriate kind and dose of insulin to be taken by a type 1 diabetes patient for a short time period, based on information about patient s glucose levels, insulin intake, and observed hypoglycemia symptoms during a previous short time period. The paper is organized as follows. In Section 2, the necessary background for neural networks is given, while in Section 3, the architecture of the proposed insulin advisory system is presented. In Section 4, the ability of Neural networks Artificial neural networks are networks of simple processing elements -called neurons or nodes- operating on their local data and communicating with other elements 17 (Fig. 1). Each neuron is able to receive input signals, to process them, and to send an output signal. Each neuron is connected at least with one neuron, and each connection is characterized by a real number, known as weight, that reflects the degree of importance of the given connection in the neural network. The neurons in a neural network are organized in at least two or more layers: the input layer, the hidden layer(s), and the output layer. According to the way the neurons are arranged and linked, neural networks can be grouped in two fundamental classes (Fig. 2): the feed-forward neural networks, where the signal flows from input to output layers and the recurrent neural networks, where self- and feedbackloops are allowed in the signal flow. The main advantage of neural networks is the fact that they are able to use some educated guess about unknown information hidden in data (but the user is not able to extract it). The FIG. 2. a: Feed-forward and b: recurrent neural networks.

3 NEURAL NETWORK APPROACH FOR INSULIN ADJUSTMENT 383 process of capturing the unknown information is called learning or training of neural network. There exist two main types of learning process: supervised and unsupervised training. In supervised training, the inputs are applied to the neural network together with the correct outputs and the weights are adjusted in order to minimize the difference between the neural network output and the desired output. The most popular algorithm of this category is the back-propagation. 17,18 In unsupervised training, the desired output is not known and the system is provided with a group of facts (patterns) and then left to itself to settle down (or not) to a stable state after a number of iterations. The algorithms of this category are used in clustering applications. 10,12 Feed-forward neural networks and back-propagation Multilayer feed-forward (MLF) neural networks, trained with a back-propagation learning algorithm are the most popular neural networks. Each neuron in the input layer or in a hidden layer is connected with all neurons in the next layer. The information of the input layer is transmitted to the neurons of the hidden layer(s) and then to the output layer. The output value (activity) of the jth neuron is determined by the equation where u j 5 ^ o j 5 f(u j ), (1) i w ji? x i 1 b j, (2) f is the transfer (activation) function, b j is the so-called bias coefficient of the jth neuron, w ji is the weight characterizing the connection from the ith neuron to the jth neuron, and the summation in eq. (2) is carried out over all neurons i transferring the signal to the jth neuron. The MLF neural network operates in two modes: training and prediction (testing) mode. For the training of the MLF neural network and for the prediction using the MLF neural network, two data sets are needed: the training and the testing sets. The training procedure begins with arbitrary values of the weights. After the outputs of the neural network have been calculated, the following error function has to be minimized E 5 } 1 2 } M ^ m51 (y m 2 o m ) 2, (3) where y m and o m are the correct and the computed outputs of neuron m at the output layer and M is the number of neurons in the output layer. Minimization of the error function is carried out using the gradient (steepest) descent method. 17 Thus, the weights and the bias coefficients are iteratively updated according to the following equations, E Dw ji 5 2h }} 5 h? d j? o i (4) w ji Db j 5 h? d j (5) where h is the learning rate. In eqs. (4) (5), d j is the so-called error signal, which is evaluated as ì ï í ï (y j 2 o j )? f9 j (u j ), if j denotes a neuron î in the output layer d j 5 f9 j (u j )? ^ d k w kj, if j denotes a neuron k in a hidden layer, (6) where the summation for a neuron in a hidden layer runs over all neurons in the next layer. The exact derivation of the above formulas can be found in the book by Haykin. 17 The above presented algorithm is called the back-propagation, because the output error propagates from the output layer through the hidden layer(s) to the input layer. The back-propagation algorithm is sensitive to the value of the learning rate h, which gives the size of change of the weights in each iteration. To improve stability and convergence of the algorithm, a momentum term is used, and eq. (4) is modified as, 17,18 Dw ji (n) 5 adw ji (n 2 1) 1 h? d j? o i (7) where a [ [0,1] is the momentum and n denotes the iteration number. The selection of momentum and learning rate values is empirical. 17,18 Moreover, the use of variable leaning rate has been suggested to speed-up algorithm s convergence. 17 When the weight matrices re-

4 384 MOUGIAKAKOU AND NIKITA FIG. 3. A system of two neural networks. The output layer of the first neural network provides estimation for the insulin regime, whereas the second neural network estimates the corresponding insulin dosages. sult in lower error, the learning rate is increased (h 5 inc 3 h, inc. 1). In the case of higher error, which would have a less desirable effect on training the network, the learning rate is decreased (h 5 dec 3 h, dec, 1), the weight and bias matrices are kept, the momentum becomes zero and the step is repeated. When training is completed, the optimized values for the weight and bias matrices are used in the prediction mode (testing phase), where information flows forward through the network, from inputs to outputs. The network processes one example of the testing set at a time, producing an estimate of the output value(s). The resulting error is used as an estimate of the quality of prediction of the trained network. NEURAL NETWORK SYSTEM FOR INSULIN ADJUSTMENT In this section, the use of two feed-forward neural networks (Fig. 3) is proposed to provide decision support to a type 1 diabetes patient, related to insulin regime and dose adjustment for a 24-hour period, based on information about blood glucose levels, insulin intake and observed hypoglycemic episodes during the previous 24-hour period. The six (6) most popular insulin regimes have been considered, corresponding to various combinations of shortacting (regular) insulin preparation (SA), intermediate-acting insulin preparation (IA) or their mixture (SA 1 IA), as presented in Table 1. The first neural network (NN1) is used to recommend on the appropriate insulin regime, while the second one (NN2) estimates the exact SA and/or IA insulin doses, based on the insulin regime. The input variables of NN1 are applied to 11 input neurons and include patient s glucose levels (measurements before breakfast, lunch, dinner, and bedtime) and recommended insulin doses (either SA or IA insulin, or their mixture). The input values, referred to glucose measurements in the 0 to 500 mg/dl range and recommended insulin doses in the 0 to 50 units range, are normalized between 0.0 and 1.0. The TABLE 1. THE SIX INSULIN REGIMES, AS A COMBINATION OF SHORT-ACTING (SA) AND INTERMEDIATE-ACTING INSULIN (IA) br lu di bt Regime (before breakfast) (before lunch) (before dinner) (before sleep) 0 SA 1 IA SA 1 IA 1 SA SA SA SA 2 SA 1 IA SA SA 3 SA SA SA IA 4 SA SA SA SA 1 IA 5 IA

5 NEURAL NETWORK APPROACH FOR INSULIN ADJUSTMENT 385 FIG. 4. a: Log-sigmoid, and b: tan-sigmoid activation functions. indications zero in the input data represent no measurement or no insulin intake. One hidden layer with 16 neurons is used and the output of NN1 is provided through a number of six (6) neurons in the output layer. Thus, the output vector [100000] corresponds to Regime 0, the output vector [010000] to Regime 1, etc. The log-sigmoid activation function (Fig. 4a) is applied to obtain the output of neurons in the hidden and the output layers. The second neural network consists of six (6) input neurons corresponding to glucose measurements (before breakfast, lunch, dinner, and bedtime), observed hypoglycemia symptoms (0: negative, 1: positive), and insulin regime, which is the transformed binary output of NN1. The input data in NN2 follow the normalization of data used in NN1. One hidden layer with 11 neurons is used, while the output of NN2 is given by seven (7) output neurons corresponding to: pre-breakfast SA and IA (br_sa, br_ia), prelunch SA (lu_sa), predinner SA and IA (di_sa, di_ia), presleep SA and IA (bt_sa, bt_ia) insulin doses. The tan-sigmoid (Fig. 4b) and log-sigmoid activation functions are applied to obtain the output of neurons in the hidden and output layers, respectively. The training and the testing procedure of the system has been based on data from 21 patients 19 suffering from type 1 diabetes treated with multiple daily injections of insulin. This data contains information about the blood glucose levels as predicted by invasive finger lancing test during the day in logical time slots (breakfast, lunch, dinner, bedtime), the insulin intake, and observed hypoglycemic symptoms. Each of the patients has recorded his blood glucose levels and insulin injections for more than 15 days. With the above information, a database has been created in Microsoft Access 2000 (Mi- TABLE 2. SUMMARY OF PATIENT DATA Total Training set Testing set Mean Range Mean Range Mean Range Glucose level (mg/dl) SA insulin (U) IA insulin (U)

6 386 MOUGIAKAKOU AND NIKITA FIG. 5. Distribution of insulin regimes. a: Total histogram, b: training set consisting of 20 different cases, and c: testing set with the remaining 14 cases. crosoft Corporation, Redmont, WA) and the patients have been classified according to the insulin regime taken. This classification concludes in the study of 34 different cases. The principal patient data related to blood glucose levels and insulin dosages are summarized in Table 2. Twenty out of the 34 cases have been used in the training phase and 14 cases in the testing phase of the neural network system (Fig. 5). Special care has been taken to provide the neural networks with a balanced insulin regime training set. Both neural networks have been trained using the back-propagation algorithm with momentum and adaptive learning rate, as described in Section 2. The amount of time required for NN1 and NN2 training was 6 and 9 min, respectively, on a Pentium III PC (128MB RAM), using Matlab (The Mathworks, Inc., Natick, MA) and the ANN Toolbox. RESULTS AND DISCUSSION In the testing phase, the system processes data about a patient, corresponding to glucose measurements and insulin intake during the previous 24-hour period and provides estimation for the insulin regime and dosages for the next 24-hour period. The performance of NN1 was extremely

7 NEURAL NETWORK APPROACH FOR INSULIN ADJUSTMENT 387 TABLE 3. MEAN VALUE (STANDARD DEVIATION) AND CORRELATION COEFFICIENT (p, 0.05) BETWEEN ACTUAL AND ESTIMATED BY NN2 INSULIN DOSES DURING A 24-HOUR PERIOD. TRAINING AND TESTING OF NN2 HAS BEEN BASED ON THE SETS OF TABLE 2 Actual insulin dose Estimated insulin Correlation (U) dose (U) coefficient br_sa Training set 8 (5) 8 (3) 0.61 Testing set 6 (4) 8 (3) 0.65 br_ia Training set 17 (15) 18 (13) 0.86 Testing set 14 (8) 22 (10) 0.90 lu_sa Training set 5 (4) 5 (3) 0.82 Testing set 4 (3) 5 (3) 0.57 di_sa Training set 10 (5) 10 (4) 0.82 Testing set 6 (4) 9 (4) 0.61 di_ia Training set Testing set bt_sa Training set 2 (5) 2 (4) 0.91 Testing set 0 (1) 1 (3) 0.67 bt_ia Training set 1 (3) 1 (2) 0.84 Testing set 0 (1) 0 (1) 0.73 good. The success in estimating the actual insulin regime was 100% and 94% for the training and testing sets, respectively. The performance of NN2 has been assessed by appropriate computations of the mean values, the standard deviations, and the correlation coefficients between actual and estimated insulin doses, separately, for the training and the testing sets. 20 The statistical significance of the mean values and the correlation coefficients has been evaluated by applying the Student paired t-test, while the F-test for population variances has been used to evaluate the statistical significance of the standard deviations. In all the results, a 5% level of significance has been considered. A comparison between actual insulin doses and those estimated by NN2 is shown in Table 3. Through the statistical significance tests, it has been observed that the estimation of the appropriate insulin doses for some diabetes patients is out of the 95% confidence limits, which means that the estimation of insulin doses for a specific time slot during the day is not acceptable. Moreover, NN2 was completely unable to estimate the dose of IA insulin before dinner for both training and testing sets. This can be the result of lack of information in the training set, since only 50 out of a total of 755 insulin data used in the training set referred to the specific insulin dose, which is present only in Regime 0. A preliminary data analysis has shown that the system performance for a specific patient is better, if a subset of the same patient s data has been used during the system s training TABLE 4. CORRELATION COEFFICIENT (p, 0.05) BETWEEN ACTUAL AND ESTIMATED INSULIN DOSAGES FOR A SPECIFIC TYPE 1 DIABETES PATIENT FOLLOWING REGIMES 0 AND 5. TRAINING OF NN2 HAS BEEN BASED ON DATA OF THE SAME PATIENT br_sa br_ia lu_sa di_sa di_ia bt_sa bt_ia Training set Testing set

8 388 phase. Based on this observation, the performance of NN2 trained for a specific patient has been assessed. To this end, a patient following Regime 0 or Regime 5 has been considered with information recorded for a total period of 47 days. Data for the first 35 days have been used in the training phase and the rest of the data in the testing phase. The estimations of NN1 were identical to the actual insulin regime, for all the days of the testing set. The correlation coefficients between actual and estimated by NN2 insulin doses are summarized in Table 4. A substantial improvement in the system s performance is observed as compared with the overall performance presented in Table 3. The relatively low performance of NN2, when trained with data from a variety of patients, can be attributed to the lack of important information from the database, related with patient related factors, such as sex, age, years of diabetes, carbohydrate intake, physical activity etc. Knowledge on insulin adjustment, according to such factors, has not been integrated in the system during the training phase and consequently the system is not able to estimate insulin dosages in the testing phase taking into account patient characteristics. However, in the case of training for a specific patient using a sufficient amount of data, the system s performance is dramatically improved, since the neural networks are able to use some a priori knowledge on patient s characteristics, which is hidden in the data. CONCLUSIONS MOUGIAKAKOU AND NIKITA A system of two feed-forward neural networks has been proposed to advise on insulin regime and dose adjustment for type 1 diabetes patients. The performance of the proposed neural networks system depends on the data used for its training. Thus, the system s ability to provide accurate predictions for a patient is substantially improved if the system is trained using previous data of the same patient. Furthermore, the system s performance and ability for generalization is expected to be further improved if additional information about other important parameters is available, such as patient s sex, age, years of diabetes, physical activity, diet, stress, other physiological ailments. REFERENCES 1. The Diabetes Control and Complications Trial Research Group: The effect of intensive treatment of diabetes on the development and progression of longterm complications in insulin-dependent diabetes mellitus. N Engl J Med 1993;329: Skyler J, Skyler D, Seigler D, Sullivan MO: Algorithms for adjustment of insulin dosage by patients who monitor blood glucose. Diabetes Care 1981;4: Berger M, Rodbard D: Computer simulation of plasma insulin and glucose dynamics after subcutaneous insulin injection. Diabetes Care 1989;12: Lehmann ED, Deutsch T, Carson ER, Sönksen PH: AIDA: An interactive diabetes advisor. Comp Meth Progr Biomed 1994;41: Deutsch T, Lehmann ED, Carson ER, Roudsari AV, Hopkins KD, Sönksen PH: Time series analysis and control of blood glucose levels in diabetic patients. Comp Meth Progr Biomed 1994;41: Andreassen S, Benn JJ, Hovorka R, Olesen KG, Carson ER: A probabilistic approach to glucose prediction and insulin dose adjustment: description of metabolic model and pilot evaluation study. Comp Meth Progr Biomed 1994;41: Cavan DA, Hejlesen OK, Hovorka R, Evans JA, Metcalfe JA, Cavan ML, Halim M, Andreassen S, Carson ER, Sönksen PH: Preliminary experience of the DIAS computer model in providing insulin dose advice to patients with insulin dependent diabetes. Comp Meth Progr Biomed 1998;56: Hagan MT, Demouth HB, Beale MH, Hagan-Demouth B: Neural network design, Boston, MA: PWS Publishing Vijaya G, Kumar V, Verma HK: ANN-based QRScomplex analysis of ECG. J Med Eng Technol 1998;22: Wright I, Gough N: Artificial neural network analysis of common femoral artery Doppler shift signals: classification of proximal disease. Ultrasound Med Biol 1999;25: Yu-Chuan Li, Li Liu, Wen-Ta Chiu, Wen-Shan Jian: Neural network modeling for surgical decisions on traumatic brain injury patients. Int J Med Inf 2000; 57: Chee Peng Lim, Harrison RF, Kennedy RL: Application of autonomous neural network systems to medical classification tasks. Artif Intell Med 1997;11: Trajanoski Z, Wach P: Neural predictive controller for insulin delivery using the subcutaneous route. IEEE Trans Biomed Eng 1998;45: Ambrosiadou BV, Gogou G, Maglaveras N, Pappas

9 NEURAL NETWORK APPROACH FOR INSULIN ADJUSTMENT 389 C: Decision support for insuln regime prescription based on a neural-network approach. Med Informatic 1996;21: Tresp V, Briegel T, Moody J: Neural-network models for the blood glucose metabolism of a diabetic. IEEE Trans Neural Networks 1999;10: Liszka-Hackzell JJ: Prediction of blood glucose levels in diabetic patients using a hybrid AI technique. Comput Biomed Res 1999;32: Haykin S: Neural networks: A comprehensive foundation. New York: Prentice-Hall Masters T: Practical neural network recipes in C11. New York: Academic Press ftp://ftp.gmd.de/learning/neural/datasets/machine-learning-databases/aim-94/ diabetes-data/, Spring Symposium on Artificial Intelligence in Medicine, 1994, Washington. 20. Brown D, Rothery P: Models in biology: Mathematics, statistics and computing. New York: John Wiley & Sons Address reprint requests to: Konstantina S. Nikita Department of Electrical and Computer Engineering National Technical University of Athens Iroon Polytechniou 9 Zografos Athens, Greece [email protected]

ECRES and CREID: two new tools to estimate the. amount of carbohydrates needed to prevent hypoglycemia. during exercise in type 1 diabetic patients

ECRES and CREID: two new tools to estimate the. amount of carbohydrates needed to prevent hypoglycemia. during exercise in type 1 diabetic patients UNIVERSITA' DEGLI STUDI DI UDINE DIPARTIMENTO DI SCIENZE E TECNOLOGIE BIOMEDICHE SEZIONE DI FISIOLOGIA UMANA Facoltà di Medicina e Chirurgia ECRES and CREID: two new tools to estimate the amount of carbohydrates

More information

AN INTELLIGENT SUPPORT SYSTEM FOR DIABETIC PATIENTS

AN INTELLIGENT SUPPORT SYSTEM FOR DIABETIC PATIENTS AN INTELLIGENT SUPPORT SYSTEM FOR DIABETIC PATIENTS Mark Hoogendoorn, Michel C. A. Klein, Nataliya M. Mogles VU University Amsterdam, Department of Artificial Intelligence, De Boelelaan 1081, Amsterdam,

More information

Self-tuning Insulin Adjustment Algorithm for Type I Diabetic Patients Based on Multi-Doses Regime.

Self-tuning Insulin Adjustment Algorithm for Type I Diabetic Patients Based on Multi-Doses Regime. International Simposium on Robotics and Automation 24 August 25-27, 24 Self-tuning Adjustment Algorithm for Type I Diabetic Patients Based on Multi-Doses Regime. D.U. Campos-Delgado Facultad de Ciencias

More information

6.2.8 Neural networks for data mining

6.2.8 Neural networks for data mining 6.2.8 Neural networks for data mining Walter Kosters 1 In many application areas neural networks are known to be valuable tools. This also holds for data mining. In this chapter we discuss the use of neural

More information

Neural Networks and Support Vector Machines

Neural Networks and Support Vector Machines INF5390 - Kunstig intelligens Neural Networks and Support Vector Machines Roar Fjellheim INF5390-13 Neural Networks and SVM 1 Outline Neural networks Perceptrons Neural networks Support vector machines

More information

EFFICIENT DATA PRE-PROCESSING FOR DATA MINING

EFFICIENT DATA PRE-PROCESSING FOR DATA MINING EFFICIENT DATA PRE-PROCESSING FOR DATA MINING USING NEURAL NETWORKS JothiKumar.R 1, Sivabalan.R.V 2 1 Research scholar, Noorul Islam University, Nagercoil, India Assistant Professor, Adhiparasakthi College

More information

Data Mining using Artificial Neural Network Rules

Data Mining using Artificial Neural Network Rules Data Mining using Artificial Neural Network Rules Pushkar Shinde MCOERC, Nasik Abstract - Diabetes patients are increasing in number so it is necessary to predict, treat and diagnose the disease. Data

More information

Lecture 6. Artificial Neural Networks

Lecture 6. Artificial Neural Networks Lecture 6 Artificial Neural Networks 1 1 Artificial Neural Networks In this note we provide an overview of the key concepts that have led to the emergence of Artificial Neural Networks as a major paradigm

More information

degrees of freedom and are able to adapt to the task they are supposed to do [Gupta].

degrees of freedom and are able to adapt to the task they are supposed to do [Gupta]. 1.3 Neural Networks 19 Neural Networks are large structured systems of equations. These systems have many degrees of freedom and are able to adapt to the task they are supposed to do [Gupta]. Two very

More information

Data quality in Accounting Information Systems

Data quality in Accounting Information Systems Data quality in Accounting Information Systems Comparing Several Data Mining Techniques Erjon Zoto Department of Statistics and Applied Informatics Faculty of Economy, University of Tirana Tirana, Albania

More information

INPATIENT DIABETES MANAGEMENT Robert J. Rushakoff, MD Professor of Medicine Director, Inpatient Diabetes University of California, San Francisco

INPATIENT DIABETES MANAGEMENT Robert J. Rushakoff, MD Professor of Medicine Director, Inpatient Diabetes University of California, San Francisco INPATIENT DIABETES MANAGEMENT Robert J. Rushakoff, MD Professor of Medicine Director, Inpatient Diabetes University of California, San Francisco CLINICAL RECOGNITION Background: Appropriate inpatient glycemic

More information

Impelling Heart Attack Prediction System using Data Mining and Artificial Neural Network

Impelling Heart Attack Prediction System using Data Mining and Artificial Neural Network General Article International Journal of Current Engineering and Technology E-ISSN 2277 4106, P-ISSN 2347-5161 2014 INPRESSCO, All Rights Reserved Available at http://inpressco.com/category/ijcet Impelling

More information

Horse Racing Prediction Using Artificial Neural Networks

Horse Racing Prediction Using Artificial Neural Networks Horse Racing Prediction Using Artificial Neural Networks ELNAZ DAVOODI, ALI REZA KHANTEYMOORI Mathematics and Computer science Department Institute for Advanced Studies in Basic Sciences (IASBS) Gavazang,

More information

Prediction Model for Crude Oil Price Using Artificial Neural Networks

Prediction Model for Crude Oil Price Using Artificial Neural Networks Applied Mathematical Sciences, Vol. 8, 2014, no. 80, 3953-3965 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ams.2014.43193 Prediction Model for Crude Oil Price Using Artificial Neural Networks

More information

Analecta Vol. 8, No. 2 ISSN 2064-7964

Analecta Vol. 8, No. 2 ISSN 2064-7964 EXPERIMENTAL APPLICATIONS OF ARTIFICIAL NEURAL NETWORKS IN ENGINEERING PROCESSING SYSTEM S. Dadvandipour Institute of Information Engineering, University of Miskolc, Egyetemváros, 3515, Miskolc, Hungary,

More information

Role of Neural network in data mining

Role of Neural network in data mining Role of Neural network in data mining Chitranjanjit kaur Associate Prof Guru Nanak College, Sukhchainana Phagwara,(GNDU) Punjab, India Pooja kapoor Associate Prof Swami Sarvanand Group Of Institutes Dinanagar(PTU)

More information

A Fuzzy Controller for Blood Glucose-Insulin System

A Fuzzy Controller for Blood Glucose-Insulin System Journal of Signal and Information Processing, 213, 4, 111-117 http://dx.doi.org/1.4236/jsip.213.4215 Published Online May 213 (http://www.scirp.org/journal/jsip) 111 Ahmed Y. Ben Sasi 1, Mahmud A. Elmalki

More information

OPTIMUM LEARNING RATE FOR CLASSIFICATION PROBLEM

OPTIMUM LEARNING RATE FOR CLASSIFICATION PROBLEM OPTIMUM LEARNING RATE FOR CLASSIFICATION PROBLEM WITH MLP IN DATA MINING Lalitha Saroja Thota 1 and Suresh Babu Changalasetty 2 1 Department of Computer Science, King Khalid University, Abha, KSA 2 Department

More information

Method of Combining the Degrees of Similarity in Handwritten Signature Authentication Using Neural Networks

Method of Combining the Degrees of Similarity in Handwritten Signature Authentication Using Neural Networks Method of Combining the Degrees of Similarity in Handwritten Signature Authentication Using Neural Networks Ph. D. Student, Eng. Eusebiu Marcu Abstract This paper introduces a new method of combining the

More information

Designing a neural network for forecasting financial time series

Designing a neural network for forecasting financial time series Designing a neural network for forecasting financial time series 29 février 2008 What a Neural Network is? Each neurone k is characterized by a transfer function f k : output k = f k ( i w ik x k ) From

More information

TRAINING A LIMITED-INTERCONNECT, SYNTHETIC NEURAL IC

TRAINING A LIMITED-INTERCONNECT, SYNTHETIC NEURAL IC 777 TRAINING A LIMITED-INTERCONNECT, SYNTHETIC NEURAL IC M.R. Walker. S. Haghighi. A. Afghan. and L.A. Akers Center for Solid State Electronics Research Arizona State University Tempe. AZ 85287-6206 [email protected]

More information

Open Access Research on Application of Neural Network in Computer Network Security Evaluation. Shujuan Jin *

Open Access Research on Application of Neural Network in Computer Network Security Evaluation. Shujuan Jin * Send Orders for Reprints to [email protected] 766 The Open Electrical & Electronic Engineering Journal, 2014, 8, 766-771 Open Access Research on Application of Neural Network in Computer Network

More information

Artificial Neural Network Approach for Classification of Heart Disease Dataset

Artificial Neural Network Approach for Classification of Heart Disease Dataset Artificial Neural Network Approach for Classification of Heart Disease Dataset Manjusha B. Wadhonkar 1, Prof. P.A. Tijare 2 and Prof. S.N.Sawalkar 3 1 M.E Computer Engineering (Second Year)., Computer

More information

Neural Networks and Back Propagation Algorithm

Neural Networks and Back Propagation Algorithm Neural Networks and Back Propagation Algorithm Mirza Cilimkovic Institute of Technology Blanchardstown Blanchardstown Road North Dublin 15 Ireland [email protected] Abstract Neural Networks (NN) are important

More information

NEURAL NETWORKS IN DATA MINING

NEURAL NETWORKS IN DATA MINING NEURAL NETWORKS IN DATA MINING 1 DR. YASHPAL SINGH, 2 ALOK SINGH CHAUHAN 1 Reader, Bundelkhand Institute of Engineering & Technology, Jhansi, India 2 Lecturer, United Institute of Management, Allahabad,

More information

Algorithms for Glycemic Management of Type 2 Diabetes

Algorithms for Glycemic Management of Type 2 Diabetes KENTUCKY DIABETES NETWORK, INC. Algorithms for Glycemic Management of Type 2 Diabetes The Diabetes Care Algorithms for Type 2 Diabetes included within this document are taken from the American Association

More information

An Introduction to Neural Networks

An Introduction to Neural Networks An Introduction to Vincent Cheung Kevin Cannons Signal & Data Compression Laboratory Electrical & Computer Engineering University of Manitoba Winnipeg, Manitoba, Canada Advisor: Dr. W. Kinsner May 27,

More information

An Artificial Neural Networks-Based on-line Monitoring Odor Sensing System

An Artificial Neural Networks-Based on-line Monitoring Odor Sensing System Journal of Computer Science 5 (11): 878-882, 2009 ISSN 1549-3636 2009 Science Publications An Artificial Neural Networks-Based on-line Monitoring Odor Sensing System Yousif Al-Bastaki The College of Information

More information

Price Prediction of Share Market using Artificial Neural Network (ANN)

Price Prediction of Share Market using Artificial Neural Network (ANN) Prediction of Share Market using Artificial Neural Network (ANN) Zabir Haider Khan Department of CSE, SUST, Sylhet, Bangladesh Tasnim Sharmin Alin Department of CSE, SUST, Sylhet, Bangladesh Md. Akter

More information

A Data Mining Study of Weld Quality Models Constructed with MLP Neural Networks from Stratified Sampled Data

A Data Mining Study of Weld Quality Models Constructed with MLP Neural Networks from Stratified Sampled Data A Data Mining Study of Weld Quality Models Constructed with MLP Neural Networks from Stratified Sampled Data T. W. Liao, G. Wang, and E. Triantaphyllou Department of Industrial and Manufacturing Systems

More information

How To Use Neural Networks In Data Mining

How To Use Neural Networks In Data Mining International Journal of Electronics and Computer Science Engineering 1449 Available Online at www.ijecse.org ISSN- 2277-1956 Neural Networks in Data Mining Priyanka Gaur Department of Information and

More information

Neural Network and Genetic Algorithm Based Trading Systems. Donn S. Fishbein, MD, PhD Neuroquant.com

Neural Network and Genetic Algorithm Based Trading Systems. Donn S. Fishbein, MD, PhD Neuroquant.com Neural Network and Genetic Algorithm Based Trading Systems Donn S. Fishbein, MD, PhD Neuroquant.com Consider the challenge of constructing a financial market trading system using commonly available technical

More information

CLASSIFICATION AND PREDICTION IN DATA MINING WITH NEURAL NETWORKS

CLASSIFICATION AND PREDICTION IN DATA MINING WITH NEURAL NETWORKS ISTANBUL UNIVERSITY JOURNAL OF ELECTRICAL & ELECTRONICS ENGINEERING YEAR VOLUME NUMBER : 2003 : 3 : 1 (707-712) CLASSIFICATION AND PREDICTION IN DATA MINING WITH NEURAL NETWORKS Serhat ÖZEKES 1 Onur OSMAN

More information

Design call center management system of e-commerce based on BP neural network and multifractal

Design call center management system of e-commerce based on BP neural network and multifractal Available online www.jocpr.com Journal of Chemical and Pharmaceutical Research, 2014, 6(6):951-956 Research Article ISSN : 0975-7384 CODEN(USA) : JCPRC5 Design call center management system of e-commerce

More information

SUCCESSFUL PREDICTION OF HORSE RACING RESULTS USING A NEURAL NETWORK

SUCCESSFUL PREDICTION OF HORSE RACING RESULTS USING A NEURAL NETWORK SUCCESSFUL PREDICTION OF HORSE RACING RESULTS USING A NEURAL NETWORK N M Allinson and D Merritt 1 Introduction This contribution has two main sections. The first discusses some aspects of multilayer perceptrons,

More information

Comparison of K-means and Backpropagation Data Mining Algorithms

Comparison of K-means and Backpropagation Data Mining Algorithms Comparison of K-means and Backpropagation Data Mining Algorithms Nitu Mathuriya, Dr. Ashish Bansal Abstract Data mining has got more and more mature as a field of basic research in computer science and

More information

Time Series Data Mining in Rainfall Forecasting Using Artificial Neural Network

Time Series Data Mining in Rainfall Forecasting Using Artificial Neural Network Time Series Data Mining in Rainfall Forecasting Using Artificial Neural Network Prince Gupta 1, Satanand Mishra 2, S.K.Pandey 3 1,3 VNS Group, RGPV, Bhopal, 2 CSIR-AMPRI, BHOPAL [email protected]

More information

Stock Prediction Using Artificial Neural Networks

Stock Prediction Using Artificial Neural Networks Stock Prediction Using Artificial Neural Networks A. Victor Devadoss 1, T. Antony Alphonnse Ligori 2 1 Head and Associate Professor, Department of Mathematics,Loyola College, Chennai, India. 2 Ph. D Research

More information

Artificial Neural Networks and Support Vector Machines. CS 486/686: Introduction to Artificial Intelligence

Artificial Neural Networks and Support Vector Machines. CS 486/686: Introduction to Artificial Intelligence Artificial Neural Networks and Support Vector Machines CS 486/686: Introduction to Artificial Intelligence 1 Outline What is a Neural Network? - Perceptron learners - Multi-layer networks What is a Support

More information

A New Approach For Estimating Software Effort Using RBFN Network

A New Approach For Estimating Software Effort Using RBFN Network IJCSNS International Journal of Computer Science and Network Security, VOL.8 No.7, July 008 37 A New Approach For Estimating Software Using RBFN Network Ch. Satyananda Reddy, P. Sankara Rao, KVSVN Raju,

More information

Stock Prediction using Artificial Neural Networks

Stock Prediction using Artificial Neural Networks Stock Prediction using Artificial Neural Networks Abhishek Kar (Y8021), Dept. of Computer Science and Engineering, IIT Kanpur Abstract In this work we present an Artificial Neural Network approach to predict

More information

Performance Evaluation of Artificial Neural. Networks for Spatial Data Analysis

Performance Evaluation of Artificial Neural. Networks for Spatial Data Analysis Contemporary Engineering Sciences, Vol. 4, 2011, no. 4, 149-163 Performance Evaluation of Artificial Neural Networks for Spatial Data Analysis Akram A. Moustafa Department of Computer Science Al al-bayt

More information

ARTIFICIAL INTELLIGENCE METHODS IN EARLY MANUFACTURING TIME ESTIMATION

ARTIFICIAL INTELLIGENCE METHODS IN EARLY MANUFACTURING TIME ESTIMATION 1 ARTIFICIAL INTELLIGENCE METHODS IN EARLY MANUFACTURING TIME ESTIMATION B. Mikó PhD, Z-Form Tool Manufacturing and Application Ltd H-1082. Budapest, Asztalos S. u 4. Tel: (1) 477 1016, e-mail: [email protected]

More information

Neural network software tool development: exploring programming language options

Neural network software tool development: exploring programming language options INEB- PSI Technical Report 2006-1 Neural network software tool development: exploring programming language options Alexandra Oliveira [email protected] Supervisor: Professor Joaquim Marques de Sá June 2006

More information

Tennis Winner Prediction based on Time-Series History with Neural Modeling

Tennis Winner Prediction based on Time-Series History with Neural Modeling Tennis Winner Prediction based on Time-Series History with Neural Modeling Amornchai Somboonphokkaphan, Suphakant Phimoltares, and Chidchanok Lursinsap Abstract Tennis is one of the most popular sports

More information

Follow links Class Use and other Permissions. For more information, send email to: [email protected]

Follow links Class Use and other Permissions. For more information, send email to: permissions@pupress.princeton.edu COPYRIGHT NOTICE: David A. Kendrick, P. Ruben Mercado, and Hans M. Amman: Computational Economics is published by Princeton University Press and copyrighted, 2006, by Princeton University Press. All rights

More information

Feed-Forward mapping networks KAIST 바이오및뇌공학과 정재승

Feed-Forward mapping networks KAIST 바이오및뇌공학과 정재승 Feed-Forward mapping networks KAIST 바이오및뇌공학과 정재승 How much energy do we need for brain functions? Information processing: Trade-off between energy consumption and wiring cost Trade-off between energy consumption

More information

SURVIVABILITY ANALYSIS OF PEDIATRIC LEUKAEMIC PATIENTS USING NEURAL NETWORK APPROACH

SURVIVABILITY ANALYSIS OF PEDIATRIC LEUKAEMIC PATIENTS USING NEURAL NETWORK APPROACH 330 SURVIVABILITY ANALYSIS OF PEDIATRIC LEUKAEMIC PATIENTS USING NEURAL NETWORK APPROACH T. M. D.Saumya 1, T. Rupasinghe 2 and P. Abeysinghe 3 1 Department of Industrial Management, University of Kelaniya,

More information

Genetic Neural Approach for Heart Disease Prediction

Genetic Neural Approach for Heart Disease Prediction Genetic Neural Approach for Heart Disease Prediction Nilakshi P. Waghulde 1, Nilima P. Patil 2 Abstract Data mining techniques are used to explore, analyze and extract data using complex algorithms in

More information

Weather forecast prediction: a Data Mining application

Weather forecast prediction: a Data Mining application Weather forecast prediction: a Data Mining application Ms. Ashwini Mandale, Mrs. Jadhawar B.A. Assistant professor, Dr.Daulatrao Aher College of engg,karad,[email protected],8407974457 Abstract

More information

SELECTING NEURAL NETWORK ARCHITECTURE FOR INVESTMENT PROFITABILITY PREDICTIONS

SELECTING NEURAL NETWORK ARCHITECTURE FOR INVESTMENT PROFITABILITY PREDICTIONS UDC: 004.8 Original scientific paper SELECTING NEURAL NETWORK ARCHITECTURE FOR INVESTMENT PROFITABILITY PREDICTIONS Tonimir Kišasondi, Alen Lovren i University of Zagreb, Faculty of Organization and Informatics,

More information

Ms. Aruna J. Chamatkar Assistant Professor in Kamla Nehru Mahavidyalaya, Sakkardara Square, Nagpur [email protected]

Ms. Aruna J. Chamatkar Assistant Professor in Kamla Nehru Mahavidyalaya, Sakkardara Square, Nagpur aruna.ayush1007@gmail.com An Artificial Intelligence for Data Mining Ms. Aruna J. Chamatkar Assistant Professor in Kamla Nehru Mahavidyalaya, Sakkardara Square, Nagpur [email protected] Abstract :Data mining is a new and

More information

NTC Project: S01-PH10 (formerly I01-P10) 1 Forecasting Women s Apparel Sales Using Mathematical Modeling

NTC Project: S01-PH10 (formerly I01-P10) 1 Forecasting Women s Apparel Sales Using Mathematical Modeling 1 Forecasting Women s Apparel Sales Using Mathematical Modeling Celia Frank* 1, Balaji Vemulapalli 1, Les M. Sztandera 2, Amar Raheja 3 1 School of Textiles and Materials Technology 2 Computer Information

More information

Artificial Neural Network Algorithm for On-Line Glucose Prediction from Continuous Glucose Monitoring

Artificial Neural Network Algorithm for On-Line Glucose Prediction from Continuous Glucose Monitoring Artificial Neural Network Algorithm for On-Line Glucose Prediction from Continuous Glucose Monitoring C. Pérez-Gandía 1 ' 2, A. Facchinetti 3, G. Sparacino 3, C. Cobelli 3, E.J. Gómez 2 ' 1, M. Rigla 4,

More information

Utilization of Neural Network for Disease Forecasting

Utilization of Neural Network for Disease Forecasting Utilization of Neural Network for Disease Forecasting Oyas Wahyunggoro 1, Adhistya Erna Permanasari 1, and Ahmad Chamsudin 1,2 1 Department of Electrical Engineering and Information Technology, Gadjah

More information

Introduction to Machine Learning and Data Mining. Prof. Dr. Igor Trajkovski [email protected]

Introduction to Machine Learning and Data Mining. Prof. Dr. Igor Trajkovski trajkovski@nyus.edu.mk Introduction to Machine Learning and Data Mining Prof. Dr. Igor Trakovski [email protected] Neural Networks 2 Neural Networks Analogy to biological neural systems, the most robust learning systems

More information

Data Mining and Neural Networks in Stata

Data Mining and Neural Networks in Stata Data Mining and Neural Networks in Stata 2 nd Italian Stata Users Group Meeting Milano, 10 October 2005 Mario Lucchini e Maurizo Pisati Università di Milano-Bicocca [email protected] [email protected]

More information

Artificial Neural Network and Non-Linear Regression: A Comparative Study

Artificial Neural Network and Non-Linear Regression: A Comparative Study International Journal of Scientific and Research Publications, Volume 2, Issue 12, December 2012 1 Artificial Neural Network and Non-Linear Regression: A Comparative Study Shraddha Srivastava 1, *, K.C.

More information

Power Prediction Analysis using Artificial Neural Network in MS Excel

Power Prediction Analysis using Artificial Neural Network in MS Excel Power Prediction Analysis using Artificial Neural Network in MS Excel NURHASHINMAH MAHAMAD, MUHAMAD KAMAL B. MOHAMMED AMIN Electronic System Engineering Department Malaysia Japan International Institute

More information

TYPE 2 DIABETES SEQUENTIAL INSULIN STRATEGIES

TYPE 2 DIABETES SEQUENTIAL INSULIN STRATEGIES TYPE 2 DIABETES SEQUENTIAL INSULIN STRATEGIES Non-insulin regimes Basal insulin only (usually with oral agents) Number of injections 1 Regimen complexity Low Basal insulin +1 meal-time rapidacting insulin

More information

Data Mining Techniques Chapter 7: Artificial Neural Networks

Data Mining Techniques Chapter 7: Artificial Neural Networks Data Mining Techniques Chapter 7: Artificial Neural Networks Artificial Neural Networks.................................................. 2 Neural network example...................................................

More information

Iranian J Env Health Sci Eng, 2004, Vol.1, No.2, pp.51-57. Application of Intelligent System for Water Treatment Plant Operation.

Iranian J Env Health Sci Eng, 2004, Vol.1, No.2, pp.51-57. Application of Intelligent System for Water Treatment Plant Operation. Iranian J Env Health Sci Eng, 2004, Vol.1, No.2, pp.51-57 Application of Intelligent System for Water Treatment Plant Operation *A Mirsepassi Dept. of Environmental Health Engineering, School of Public

More information

International Journal of Computer Trends and Technology (IJCTT) volume 4 Issue 8 August 2013

International Journal of Computer Trends and Technology (IJCTT) volume 4 Issue 8 August 2013 A Short-Term Traffic Prediction On A Distributed Network Using Multiple Regression Equation Ms.Sharmi.S 1 Research Scholar, MS University,Thirunelvelli Dr.M.Punithavalli Director, SREC,Coimbatore. Abstract:

More information

Visualization of Breast Cancer Data by SOM Component Planes

Visualization of Breast Cancer Data by SOM Component Planes International Journal of Science and Technology Volume 3 No. 2, February, 2014 Visualization of Breast Cancer Data by SOM Component Planes P.Venkatesan. 1, M.Mullai 2 1 Department of Statistics,NIRT(Indian

More information

Therapy Insulin Practical guide to Health Care Providers Quick Reference F Diabetes Mellitus in Type 2

Therapy Insulin Practical guide to Health Care Providers Quick Reference F Diabetes Mellitus in Type 2 Ministry of Health, Malaysia 2010 First published March 2011 Perkhidmatan Diabetes dan Endokrinologi Kementerian Kesihatan Malaysia Practical guide to Insulin Therapy in Type 2 Diabetes Mellitus Quick

More information

Chapter 4: Artificial Neural Networks

Chapter 4: Artificial Neural Networks Chapter 4: Artificial Neural Networks CS 536: Machine Learning Littman (Wu, TA) Administration icml-03: instructional Conference on Machine Learning http://www.cs.rutgers.edu/~mlittman/courses/ml03/icml03/

More information

CHAPTER 5 PREDICTIVE MODELING STUDIES TO DETERMINE THE CONVEYING VELOCITY OF PARTS ON VIBRATORY FEEDER

CHAPTER 5 PREDICTIVE MODELING STUDIES TO DETERMINE THE CONVEYING VELOCITY OF PARTS ON VIBRATORY FEEDER 93 CHAPTER 5 PREDICTIVE MODELING STUDIES TO DETERMINE THE CONVEYING VELOCITY OF PARTS ON VIBRATORY FEEDER 5.1 INTRODUCTION The development of an active trap based feeder for handling brakeliners was discussed

More information

American International Journal of Research in Science, Technology, Engineering & Mathematics

American International Journal of Research in Science, Technology, Engineering & Mathematics American International Journal of Research in Science, Technology, Engineering & Mathematics Available online at http://www.iasir.net ISSN (Print): 2328-349, ISSN (Online): 2328-3580, ISSN (CD-ROM): 2328-3629

More information

A Prediction Model for Taiwan Tourism Industry Stock Index

A Prediction Model for Taiwan Tourism Industry Stock Index A Prediction Model for Taiwan Tourism Industry Stock Index ABSTRACT Han-Chen Huang and Fang-Wei Chang Yu Da University of Science and Technology, Taiwan Investors and scholars pay continuous attention

More information

Basal Rate Testing Blood sugar is affected at any time by 1) basal insulin 2) food (carbohydrate) intake 3) bolus insulin (meal time and correction)

Basal Rate Testing Blood sugar is affected at any time by 1) basal insulin 2) food (carbohydrate) intake 3) bolus insulin (meal time and correction) Basal Rate Testing Blood sugar is affected at any time by 1) basal insulin 2) food (carbohydrate) intake 3) bolus insulin (meal time and correction) 4) activity and 5) other factors such as stress and

More information

Chapter 2 The Research on Fault Diagnosis of Building Electrical System Based on RBF Neural Network

Chapter 2 The Research on Fault Diagnosis of Building Electrical System Based on RBF Neural Network Chapter 2 The Research on Fault Diagnosis of Building Electrical System Based on RBF Neural Network Qian Wu, Yahui Wang, Long Zhang and Li Shen Abstract Building electrical system fault diagnosis is the

More information

Impact of Feature Selection on the Performance of Wireless Intrusion Detection Systems

Impact of Feature Selection on the Performance of Wireless Intrusion Detection Systems 2009 International Conference on Computer Engineering and Applications IPCSIT vol.2 (2011) (2011) IACSIT Press, Singapore Impact of Feature Selection on the Performance of ireless Intrusion Detection Systems

More information

Chapter 12 Discovering New Knowledge Data Mining

Chapter 12 Discovering New Knowledge Data Mining Chapter 12 Discovering New Knowledge Data Mining Becerra-Fernandez, et al. -- Knowledge Management 1/e -- 2004 Prentice Hall Additional material 2007 Dekai Wu Chapter Objectives Introduce the student to

More information

Insulin dosage based on risk index of Postprandial Hypo- and Hyperglycemia in Type 1 Diabetes Mellitus with uncertain parameters and food intake

Insulin dosage based on risk index of Postprandial Hypo- and Hyperglycemia in Type 1 Diabetes Mellitus with uncertain parameters and food intake based on risk index of Postprandial Hypo- and Hyperglycemia in Type 1 Diabetes Mellitus with uncertain parameters and food intake Remei Calm 1, Maira García-Jaramillo 1, Jorge Bondia 2, Josep Vehí 1 1

More information

A Machine Learning Approach to Predicting Blood Glucose Levels for Diabetes Management

A Machine Learning Approach to Predicting Blood Glucose Levels for Diabetes Management A Machine Learning Approach to Predicting Blood Glucose Levels for Diabetes Management Kevin Plis, Razvan Bunescu and Cindy Marling School of Electrical Engineering and Computer Science Russ College of

More information

Forecasting the U.S. Stock Market via Levenberg-Marquardt and Haken Artificial Neural Networks Using ICA&PCA Pre-Processing Techniques

Forecasting the U.S. Stock Market via Levenberg-Marquardt and Haken Artificial Neural Networks Using ICA&PCA Pre-Processing Techniques Forecasting the U.S. Stock Market via Levenberg-Marquardt and Haken Artificial Neural Networks Using ICA&PCA Pre-Processing Techniques Golovachev Sergey National Research University, Higher School of Economics,

More information

Neural Network Predictor for Fraud Detection: A Study Case for the Federal Patrimony Department

Neural Network Predictor for Fraud Detection: A Study Case for the Federal Patrimony Department DOI: 10.5769/C2012010 or http://dx.doi.org/10.5769/c2012010 Neural Network Predictor for Fraud Detection: A Study Case for the Federal Patrimony Department Antonio Manuel Rubio Serrano (1,2), João Paulo

More information

Stabilization by Conceptual Duplication in Adaptive Resonance Theory

Stabilization by Conceptual Duplication in Adaptive Resonance Theory Stabilization by Conceptual Duplication in Adaptive Resonance Theory Louis Massey Royal Military College of Canada Department of Mathematics and Computer Science PO Box 17000 Station Forces Kingston, Ontario,

More information

MANAGING QUEUE STABILITY USING ART2 IN ACTIVE QUEUE MANAGEMENT FOR CONGESTION CONTROL

MANAGING QUEUE STABILITY USING ART2 IN ACTIVE QUEUE MANAGEMENT FOR CONGESTION CONTROL MANAGING QUEUE STABILITY USING ART2 IN ACTIVE QUEUE MANAGEMENT FOR CONGESTION CONTROL G. Maria Priscilla 1 and C. P. Sumathi 2 1 S.N.R. Sons College (Autonomous), Coimbatore, India 2 SDNB Vaishnav College

More information

A new insulin order form should be completed for subsequent changes to type of insulin and/or frequency of administration

A new insulin order form should be completed for subsequent changes to type of insulin and/or frequency of administration of nurse A new insulin order form should be completed for subsequent changes to type of insulin and/or frequency of administration 1. Check times for point of care meter blood glucose testing. Pre-Breakfast

More information

Comparison of Supervised and Unsupervised Learning Classifiers for Travel Recommendations

Comparison of Supervised and Unsupervised Learning Classifiers for Travel Recommendations Volume 3, No. 8, August 2012 Journal of Global Research in Computer Science REVIEW ARTICLE Available Online at www.jgrcs.info Comparison of Supervised and Unsupervised Learning Classifiers for Travel Recommendations

More information

Neural Networks algorithms and applications

Neural Networks algorithms and applications Neural Networks algorithms and applications By Fiona Nielsen 4i 12/12-2001 Supervisor: Geert Rasmussen Niels Brock Business College 1 Introduction Neural Networks is a field of Artificial Intelligence

More information

tips Insulin Pump Users 1 Early detection of insulin deprivation in continuous subcutaneous 2 Population Study of Pediatric Ketoacidosis in Sweden:

tips Insulin Pump Users 1 Early detection of insulin deprivation in continuous subcutaneous 2 Population Study of Pediatric Ketoacidosis in Sweden: tips Top International Publications Selection Insulin Pump Users Early detection of insulin deprivation in continuous subcutaneous insulin infusion-treated Patients with TD Population Study of Pediatric

More information

Recurrent Neural Networks

Recurrent Neural Networks Recurrent Neural Networks Neural Computation : Lecture 12 John A. Bullinaria, 2015 1. Recurrent Neural Network Architectures 2. State Space Models and Dynamical Systems 3. Backpropagation Through Time

More information

Computational Intelligence Introduction

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

More information

Neural Network Design in Cloud Computing

Neural Network Design in Cloud Computing International Journal of Computer Trends and Technology- volume4issue2-2013 ABSTRACT: Neural Network Design in Cloud Computing B.Rajkumar #1,T.Gopikiran #2,S.Satyanarayana *3 #1,#2Department of Computer

More information

EM Clustering Approach for Multi-Dimensional Analysis of Big Data Set

EM Clustering Approach for Multi-Dimensional Analysis of Big Data Set EM Clustering Approach for Multi-Dimensional Analysis of Big Data Set Amhmed A. Bhih School of Electrical and Electronic Engineering Princy Johnson School of Electrical and Electronic Engineering Martin

More information

Machine Learning and Data Mining -

Machine Learning and Data Mining - Machine Learning and Data Mining - Perceptron Neural Networks Nuno Cavalheiro Marques ([email protected]) Spring Semester 2010/2011 MSc in Computer Science Multi Layer Perceptron Neurons and the Perceptron

More information

Optimization of PID parameters with an improved simplex PSO

Optimization of PID parameters with an improved simplex PSO Li et al. Journal of Inequalities and Applications (2015) 2015:325 DOI 10.1186/s13660-015-0785-2 R E S E A R C H Open Access Optimization of PID parameters with an improved simplex PSO Ji-min Li 1, Yeong-Cheng

More information

Predict Influencers in the Social Network

Predict Influencers in the Social Network Predict Influencers in the Social Network Ruishan Liu, Yang Zhao and Liuyu Zhou Email: rliu2, yzhao2, [email protected] Department of Electrical Engineering, Stanford University Abstract Given two persons

More information

A New Method for Traffic Forecasting Based on the Data Mining Technology with Artificial Intelligent Algorithms

A New Method for Traffic Forecasting Based on the Data Mining Technology with Artificial Intelligent Algorithms Research Journal of Applied Sciences, Engineering and Technology 5(12): 3417-3422, 213 ISSN: 24-7459; e-issn: 24-7467 Maxwell Scientific Organization, 213 Submitted: October 17, 212 Accepted: November

More information

Keywords: Image complexity, PSNR, Levenberg-Marquardt, Multi-layer neural network.

Keywords: Image complexity, PSNR, Levenberg-Marquardt, Multi-layer neural network. Global Journal of Computer Science and Technology Volume 11 Issue 3 Version 1.0 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals Inc. (USA) Online ISSN: 0975-4172

More information

SPECIAL PERTURBATIONS UNCORRELATED TRACK PROCESSING

SPECIAL PERTURBATIONS UNCORRELATED TRACK PROCESSING AAS 07-228 SPECIAL PERTURBATIONS UNCORRELATED TRACK PROCESSING INTRODUCTION James G. Miller * Two historical uncorrelated track (UCT) processing approaches have been employed using general perturbations

More information

Neural Network Applications in Stock Market Predictions - A Methodology Analysis

Neural Network Applications in Stock Market Predictions - A Methodology Analysis Neural Network Applications in Stock Market Predictions - A Methodology Analysis Marijana Zekic, MS University of Josip Juraj Strossmayer in Osijek Faculty of Economics Osijek Gajev trg 7, 31000 Osijek

More information

Comparison of Supervised and Unsupervised Learning Algorithms for Pattern Classification

Comparison of Supervised and Unsupervised Learning Algorithms for Pattern Classification Comparison of Supervised and Unsupervised Learning Algorithms for Pattern Classification R. Sathya Professor, Dept. of MCA, Jyoti Nivas College (Autonomous), Professor and Head, Dept. of Mathematics, Bangalore,

More information

Introduction to Artificial Neural Networks

Introduction to Artificial Neural Networks POLYTECHNIC UNIVERSITY Department of Computer and Information Science Introduction to Artificial Neural Networks K. Ming Leung Abstract: A computing paradigm known as artificial neural network is introduced.

More information