Lecture 3: Multi-layer perceptron

Size: px
Start display at page:

Download "Lecture 3: Multi-layer perceptron"

Transcription

1 x Fundamental Theores and Applcatons of Neural Netors Lecture 3: Mult-laer perceptron Contents of ths lecture Ree of sngle laer neural ors. Formulaton of the delta learnng rule of sngle laer neural ors. BP: an extended delta-learnng rule for multlaer neural ors. Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3- Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3- Ree of sngle laer neural or Reformulaton of the delta learnng rule There are J nputs and K outputs. The last nput s fxed to so that the correspondng eght s the thresh. For a gen nput ector The effecte nput of the -th neuron s The actual output of the -th neuron s o The desred output of the -th neuron s d The error to be mnmzed s E o o o K J Accordng to the gradent descent algorthm, the eght from the -th nput to the -th neuron should be updated b E Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-3 Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-4

2 Gradent of the error functon K E ( d Note that E s E here ( o rule, ecan get the partal dreate E ( ( J mplctel a functon of (, usng the chan Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-5 of E to as follos : Defnton of the error sgnal If e defne the error sgnal produced b the - th neuron as follos : o ehae here o E ( E o o o ( ( d o f '( Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-6 Equaton for updatng the eghts Thus, the eght can be updatedb If e use the unpolar sgmod functon th, f '( If e use the bpolar sgmod functon th, f '( o ( d ( o ( o o f '( / For off-lne learnng Remars The error should be defned as the total error of the or for all tranng examples. The tranng examples are used repeatedl untl the error becomes small enough. The eghts of all neurons are updated all together n a snchronous mode. Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-7 Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-8

3 x Program of delta learnng rule for sngle laer neural or Intalzaton(; hle(error>desred_error{ for(error=0,p=0; p<n_sample; p++{ FndOutput(p; for(=0;<k;++{ Error+=0.5*po(d[][p]-o[],.0; for(=0;<k;++{ delta=(d[][p]-o[]*(-o[]*o[]/; for(=0;<j;++{ [][]+=eta*delta*[p][]; Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-9 Results for AND/OR gates Error n the 3-th learnng ccle= Error n the 3-th learnng ccle= Error n the 33-th learnng ccle= Error n the 34-th learnng ccle= Error n the 35-th learnng ccle= Error n the 36-th learnng ccle=0.003 Error n the 37-th learnng ccle= Error n the 38-th learnng ccle= Error n the 39-th learnng ccle= Error n the 330-th learnng ccle= Error n the 33-th learnng ccle= W[0]: W[]: Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-0 Multlaer feedforard neural or o o o K Multlaer feedforard neural or J The or n the last slde s a three laer perceptron, also called three laer feed forard neural or. There are I nputs, J hdden neurons, and K output neurons. The last nput of each hdden neuron or each output neuron s. The nput can be output of another laer of neurons. The output can be nput of another laer. z z z I Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3- Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-3

4 Defnton of notatons z : The -th nput : The output of the -th hdden neuron o : The output of the -th output neuron : The eght from the -th nput to the -th hdden neuron : The eght from the -th hdden neuron to the -th output neuron Rule for updatng the output neurons Weght update for the output neurons can be performed exactl n the same a as for sngle laer perceptron. For an nput, fnd the output of the hdden neurons, and then the output of the output neurons. The eghts of each output neuron can be updated b usng the delta learnng rule. Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-3 Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-4 Rule for updatng the hdden neurons Frst, e hae Usng the chan rule, ecan get E E E ( ( Error sgnal produced b the - th hdden neuron E ( Update the eghts of hdden neurons ( Note also that Usng the chan rule, ecan fnd the error sgnal as follos : ( E z z, e hae f '( K o Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-5 Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-6 4

5 Update the eghts of hdden neurons Thus, the eghts of the hdden neurons can be updated If e use the unpolar sgmod functon th, f '( If e use the bpolar sgmod functon th, f '( z ( ( / b Comments The learnng algorthm s usuall called the bac propagaton (BP algorthm because the error sgnal of the hdden neurons are bac propagated from the output laer to the hdden laer(s. In some context, the algorthm s also called the extended delta-learnng rule. Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-7 Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-8 Summar of the BP algorthm Step : Intalze the eghts. Step : Reset the total error. Step 3: Get a tranng example z from the tranng set, calculate the outputs of the hdden neurons and those of the output neurons, and update the total error. Step 4: Calculate the error sgnals as follos: o ( d ( o o / K o (- / Summar of the BP algorthm (cont. Step 5: Update the eghts as follos: ηδ o for,,, K;,,, J ηδ z for,,, J;,,, I Step 6: See f all tranng examples hae been used. If NOT, return to Step 3. Step 7: See f the total error s smaller than the desred alue. If NOT, return to Step ; otherse, termnate. Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-9 Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-0 5

6 A smple example: Solng the XOR problem The functon to be approxmated s a - arable bnar functon. Ths problem, although smple, cannot be soled b ANY sngle laer neural or. o The or structure XOR can be soled usng a three laer neural or. It contans three nputs, th the last one beng fxed to, to hdden neurons, and one output neuron. The problem s to fnd the correct eghts for all neurons, so that for an gen nput, the correct output can be proded. Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3- Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3- Results of BP Error[073]= Error[074]= Error[075]= Phscal meanng of the result L : 0.64x 0.5x 0.3 The connecton eghts n the output laer: The connecton eghts n the hdden laer: L : 0.3x 0.47x 0.06 L3 : Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-3 Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-4 6

7 To mproe the BP algorthm The learnng constant can be arable If the error s reduced greatl b the current update, the learnng rate can be ncreased. If the error s not reduced, the learnng rate can be decreased. Momentum method The ncrement of the eght can be modfed b the updatng hstor. Ho man hdden neurons to use? Accordng to Multlaer Perceptrons: Approxmaton order and Necessar Number of Hdden Unts (rtten b Stephan Trenn, IEEE TNN, Vol. 9, No. 5, 008, pp , for an MLP th one hdden laer, n 0 nputs, and smooth actaton functon, t achees approxmaton order N for all functons onl f the number of hdden unts s larger than N n0 n0 n 0 Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-5 Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-6 Ho man hdden Laers to use? For hgh approxmaton order (>, to hdden laers should be used nstead of one hdden laer. For lnear and quadratc approxmaton, onl one hdden laer s needed. Here, a functon f approxmates another functon g th order N f and onl f ther Talor polnomals are the same up to the order N. The functon to be approxmated b the MLP should be suffcentl smooth. The numbers gen here are relatel conserate because the MLP must approxmate ANY functon ell (to sole a practcal problem, e ma consder one functon or a specal set of functons onl. Team Proect II Mae a computer program for the BP algorthm. Test our program usng the 4-bt part chec problem. The number of nputs s 5 (4 plus one dumm nput and the number of output s ([0,] or [-,]. The desred output s f the number of ones n the nputs s een; otherse, the output s 0 or -. Chec the performance of the or b changng the number of hdden neurons from 4 to 0, th step-sze. Prode a summar of our results n our report (txt-fle. Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-7 Produced b Qangfu Zhao (Sne 997, All rghts resered Lecture 3-8 7

Networks. Backpropagation. Backpropagation. Introduction to. Backpropagation Network training. Backpropagation Learning Details 1.04.

Networks. Backpropagation. Backpropagation. Introduction to. Backpropagation Network training. Backpropagation Learning Details 1.04. Networs Introducton to - In 1986 a method for learnng n mult-layer wor,, was nvented by Rumelhart Paper Why are what and where processed by separate cortcal vsual systems? - The algorthm s a sensble approach

More information

Microelectronic Circuits

Microelectronic Circuits Mcroelectronc Crcuts Slde 1 Introducton Suggested textbook: 1. Adel S. Sedra and Kenneth C. Smth, Mcroelectronc Crcuts Theory and Applcatons, Sxth edton Internatonal Verson, Oxford Unersty Press, 2013.

More information

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 1 Laboratory Energy Sources

POLYTECHNIC UNIVERSITY Electrical Engineering Department. EE SOPHOMORE LABORATORY Experiment 1 Laboratory Energy Sources POLYTECHNIC UNIERSITY Electrcal Engneerng Department EE SOPHOMORE LABORATORY Experment 1 Laboratory Energy Sources Modfed for Physcs 18, Brooklyn College I. Oerew of the Experment Ths experment has three

More information

SIMULATION OF FAULT DETECTION FOR PROTECTION OF TRANSMISSION LINE USING NEURAL NETWORK

SIMULATION OF FAULT DETECTION FOR PROTECTION OF TRANSMISSION LINE USING NEURAL NETWORK Internatonal Journal of Scence, ngneerng and Technology Research (IJSTR), Volume 3, Issue 5, May 04 SIMULATIO OF FAULT DTCTIO FOR PROTCTIO OF TRASMISSIO LI USIG URAL TWORK Smrt Kesharwan #, Dharmendra

More information

Research of Dispatching Method in Elevator Group Control System Based on Fuzzy Neural Network. Yufeng Dai a, Yun Du b

Research of Dispatching Method in Elevator Group Control System Based on Fuzzy Neural Network. Yufeng Dai a, Yun Du b 2nd Internatonal Conference on Computer Engneerng, Informaton Scence & Applcaton Technology (ICCIA 207) Research of Dspatchng Method n Elevator Group Control System Based on Fuzzy Neural Network Yufeng

More information

Passive Filters. References: Barbow (pp ), Hayes & Horowitz (pp 32-60), Rizzoni (Chap. 6)

Passive Filters. References: Barbow (pp ), Hayes & Horowitz (pp 32-60), Rizzoni (Chap. 6) Passve Flters eferences: Barbow (pp 6575), Hayes & Horowtz (pp 360), zzon (Chap. 6) Frequencyselectve or flter crcuts pass to the output only those nput sgnals that are n a desred range of frequences (called

More information

PRACTICAL, COMPUTATION EFFICIENT HIGH-ORDER NEURAL NETWORK FOR ROTATION AND SHIFT INVARIANT PATTERN RECOGNITION. Evgeny Artyomov and Orly Yadid-Pecht

PRACTICAL, COMPUTATION EFFICIENT HIGH-ORDER NEURAL NETWORK FOR ROTATION AND SHIFT INVARIANT PATTERN RECOGNITION. Evgeny Artyomov and Orly Yadid-Pecht 68 Internatonal Journal "Informaton Theores & Applcatons" Vol.11 PRACTICAL, COMPUTATION EFFICIENT HIGH-ORDER NEURAL NETWORK FOR ROTATION AND SHIFT INVARIANT PATTERN RECOGNITION Evgeny Artyomov and Orly

More information

Optimization of an Oil Production System using Neural Networks and Genetic Algorithms

Optimization of an Oil Production System using Neural Networks and Genetic Algorithms IFSA-EUSFLAT 9 Optmzaton of an Ol Producton System usng Neural Networks and Genetc Algorthms Gullermo Jmenez de la C, Jose A. Ruz-Hernandez Evgen Shelomov Ruben Salazar M., Unversdad Autonoma del Carmen,

More information

TECHNICAL NOTE TERMINATION FOR POINT- TO-POINT SYSTEMS TN TERMINATON FOR POINT-TO-POINT SYSTEMS. Zo = L C. ω - angular frequency = 2πf

TECHNICAL NOTE TERMINATION FOR POINT- TO-POINT SYSTEMS TN TERMINATON FOR POINT-TO-POINT SYSTEMS. Zo = L C. ω - angular frequency = 2πf TECHNICAL NOTE TERMINATION FOR POINT- TO-POINT SYSTEMS INTRODUCTION Because dgtal sgnal rates n computng systems are ncreasng at an astonshng rate, sgnal ntegrty ssues have become far more mportant to

More information

A NEW ACTIVE POWER LINE CONDITIONER FOR COMPENSATION IN UNBALANCED/DISTORTED ELECTRICAL POWER SYSTEMS

A NEW ACTIVE POWER LINE CONDITIONER FOR COMPENSATION IN UNBALANCED/DISTORTED ELECTRICAL POWER SYSTEMS A NEW ACIVE POWER LINE CONDIIONER FOR COMPENSAION IN UNBALANCED/DISORED ELECRICAL POWER SYSEMS Jesús R. Vázquez, Patrco Salmerón, F. Jaer Alcántara, Jame Preto Electrcal Engneerng Department, Escuela Poltécnca

More information

Fast Code Detection Using High Speed Time Delay Neural Networks

Fast Code Detection Using High Speed Time Delay Neural Networks Fast Code Detecton Usng Hgh Speed Tme Delay Neural Networks Hazem M. El-Bakry 1 and Nkos Mastoraks 1 Faculty of Computer Scence & Informaton Systems, Mansoura Unversty, Egypt helbakry0@yahoo.com Department

More information

ECEN 5014, Spring 2013 Special Topics: Active Microwave Circuits and MMICs Zoya Popovic, University of Colorado, Boulder

ECEN 5014, Spring 2013 Special Topics: Active Microwave Circuits and MMICs Zoya Popovic, University of Colorado, Boulder ECEN 514, Sprng 13 Specal Topcs: Acte Mcrowae Crcuts and MMICs Zoya Popoc, Unersty of Colorado, Boulder LECTURE 4 BROADBAND AMPLIFIERS L4.1. INTRODUCTION The challenge n desgnng a broadband mcrowae amplfer

More information

Digital Transmission

Digital Transmission Dgtal Transmsson Most modern communcaton systems are dgtal, meanng that the transmtted normaton sgnal carres bts and symbols rather than an analog sgnal. The eect o C/N rato ncrease or decrease on dgtal

More information

A Study of Artificial Neural Networks for Electrochemical Data Analysis

A Study of Artificial Neural Networks for Electrochemical Data Analysis Journal of the Chnese Chemcal Socety, 010, 57, 637-646 637 A Study of Artfcal Neural Networks for Electrochemcal Data Analyss Kan-Ln Hsueh ( ) Department of Energy and Resources, Natonal Unted Unversty,

More information

Side-Match Vector Quantizers Using Neural Network Based Variance Predictor for Image Coding

Side-Match Vector Quantizers Using Neural Network Based Variance Predictor for Image Coding Sde-Match Vector Quantzers Usng Neural Network Based Varance Predctor for Image Codng Shuangteng Zhang Department of Computer Scence Eastern Kentucky Unversty Rchmond, KY 40475, U.S.A. shuangteng.zhang@eku.edu

More information

ANNUAL OF NAVIGATION 11/2006

ANNUAL OF NAVIGATION 11/2006 ANNUAL OF NAVIGATION 11/2006 TOMASZ PRACZYK Naval Unversty of Gdyna A FEEDFORWARD LINEAR NEURAL NETWORK WITH HEBBA SELFORGANIZATION IN RADAR IMAGE COMPRESSION ABSTRACT The artcle presents the applcaton

More information

NEURAL PROCESSIN G.SYSTEMS 2 INF ORM.ATIO N (Q90. ( Iq~O) DAVID S. TOURETZKY ADVANCES CARNEGIE MELLON UNIVERSITY. ..F~ k \ """ Ct... V\.

NEURAL PROCESSIN G.SYSTEMS 2 INF ORM.ATIO N (Q90. ( Iq~O) DAVID S. TOURETZKY ADVANCES CARNEGIE MELLON UNIVERSITY. ..F~ k \  Ct... V\. ....F~ k \ """ Ct... V\. ~.Le.- b;e ve-. ( Iq~O) ADVANCES IN NEURAL INF ORM.ATIO N PROCESSIN G.SYSTEMS 2 EDITED BY DAVID S. TOURETZKY CARNEGIE MELLON UNIVERSITY (Q90.MORGAN KAUFMANN PUBLISHERS 2929 CAMPUS

More information

Breast Cancer Detection using Recursive Least Square and Modified Radial Basis Functional Neural Network

Breast Cancer Detection using Recursive Least Square and Modified Radial Basis Functional Neural Network Breast Cancer Detecton usng Recursve Least Square and Modfed Radal Bass Functonal Neural Network M.R.Senapat a, P.K.Routray b,p.k.dask b,a Department of computer scence and Engneerng Gandh Engneerng College

More information

arxiv: v1 [cs.lg] 22 Jan 2016 Abstract

arxiv: v1 [cs.lg] 22 Jan 2016 Abstract Mne Km MINJE@ILLINOIS.EDU Department of Computer Scence, Unversty of Illnos at Urbana-Champagn, Urbana, IL 61801 USA Pars Smaragds Unversty of Illnos at Urbana-Champagn, Urbana, IL 61801 USA Adobe Research,

More information

STRUCTURE ANALYSIS OF NEURAL NETWORKS

STRUCTURE ANALYSIS OF NEURAL NETWORKS STRUCTURE ANALYSIS OF NEURAL NETWORKS DING SHENQIANG NATIONAL UNIVERSITY OF SINGAPORE 004 STRUCTURE ANALYSIS OF NEURAL NETWORKS DING SHENQIANG 004 STRUCTURE ANANLYSIS OF NEURAL NETWORKS DING SHENQIANG

More information

Comparison of Gradient descent method, Kalman Filtering and decoupled Kalman in training Neural Networks used for fingerprint-based positioning

Comparison of Gradient descent method, Kalman Filtering and decoupled Kalman in training Neural Networks used for fingerprint-based positioning Comparson of Gradent descent method, Kalman lterng and decoupled Kalman n tranng Neural Networs used for fngerprnt-based postonng Claude Mbusa Taenga, Koteswara Rao Anne, K Kyamaya, Jean Chamberlan Chedou

More information

Advanced Bio-Inspired Plausibility Checking in a Wireless Sensor Network Using Neuro-Immune Systems

Advanced Bio-Inspired Plausibility Checking in a Wireless Sensor Network Using Neuro-Immune Systems Fourth Internatonal Conference on Sensor Technologes and Applcatons Advanced Bo-Inspred Plausblty Checkng n a reless Sensor Network Usng Neuro-Immune Systems Autonomous Fault Dagnoss n an Intellgent Transportaton

More information

Development of Neural Networks for Noise Reduction

Development of Neural Networks for Noise Reduction The Internatonal Arab Journal of Informaton Technology, Vol. 7, No. 3, July 00 89 Development of Neural Networks for Nose Reducton Lubna Badr Faculty of Engneerng, Phladelpha Unversty, Jordan Abstract:

More information

High Speed, Low Power And Area Efficient Carry-Select Adder

High Speed, Low Power And Area Efficient Carry-Select Adder Internatonal Journal of Scence, Engneerng and Technology Research (IJSETR), Volume 5, Issue 3, March 2016 Hgh Speed, Low Power And Area Effcent Carry-Select Adder Nelant Harsh M.tech.VLSI Desgn Electroncs

More information

CS345a: Data Mining Jure Leskovec and Anand Rajaraman Stanford University

CS345a: Data Mining Jure Leskovec and Anand Rajaraman Stanford University CS345a: Data Mnng Jure Leskovec and Anand Rajaraman Stanford Unversty HW3 s out Poster sesson s on last day of classes: Thu March 11 at 4:15 Reports are due March 14 Fnal s March 18 at 12:15 Open book,

More information

New Parallel Radial Basis Function Neural Network for Voltage Security Analysis

New Parallel Radial Basis Function Neural Network for Voltage Security Analysis New Parallel Radal Bass Functon Neural Network for Voltage Securty Analyss T. Jan, L. Srvastava, S.N. Sngh and I. Erlch Abstract: On-lne montorng of power system voltage securty has become a very demandng

More information

Dynamic Optimization. Assignment 1. Sasanka Nagavalli January 29, 2013 Robotics Institute Carnegie Mellon University

Dynamic Optimization. Assignment 1. Sasanka Nagavalli January 29, 2013 Robotics Institute Carnegie Mellon University Dynamc Optmzaton Assgnment 1 Sasanka Nagavall snagaval@andrew.cmu.edu 16-745 January 29, 213 Robotcs Insttute Carnege Mellon Unversty Table of Contents 1. Problem and Approach... 1 2. Optmzaton wthout

More information

Rejection of PSK Interference in DS-SS/PSK System Using Adaptive Transversal Filter with Conditional Response Recalculation

Rejection of PSK Interference in DS-SS/PSK System Using Adaptive Transversal Filter with Conditional Response Recalculation SERBIAN JOURNAL OF ELECTRICAL ENGINEERING Vol., No., November 23, 3-9 Rejecton of PSK Interference n DS-SS/PSK System Usng Adaptve Transversal Flter wth Condtonal Response Recalculaton Zorca Nkolć, Bojan

More information

COMPLEX NEURAL NETWORK APPROACH TO OPTIMAL LOCATION OF FACTS DEVICES FOR TRANSFER CAPABILITY ENHANCEMENT

COMPLEX NEURAL NETWORK APPROACH TO OPTIMAL LOCATION OF FACTS DEVICES FOR TRANSFER CAPABILITY ENHANCEMENT ARPN Journal of Engneerng and Appled Scences 006-010 Asan Research Publshng Networ (ARPN). All rghts reserved. www.arpnournals.com COMPLEX NEURAL NETWORK APPROACH TO OPTIMAL LOCATION OF FACTS DEVICES FOR

More information

Adaptive System Control with PID Neural Networks

Adaptive System Control with PID Neural Networks Adaptve System Control wth PID Neural Networs F. Shahra a, M.A. Fanae b, A.R. Aromandzadeh a a Department of Chemcal Engneerng, Unversty of Sstan and Baluchestan, Zahedan, Iran. b Department of Chemcal

More information

Design of Visual Feedback Tracking Algorithm for Nonholonomic Mobile Robots Based on Neural Network

Design of Visual Feedback Tracking Algorithm for Nonholonomic Mobile Robots Based on Neural Network Sensors & Transducers 2013 by IFSA http://www.sensorsportal.com Desgn of Vsual Feedbac Tracng Algorthm for Nonholonomc Moble Robots Based on Neural Networ 1 Huang Xuan, 2 Wenhua Zeng 1 Cogntve Scence Department,

More information

Yarn tenacity modeling using artificial neural networks and development of a decision support system based on genetic algorithms

Yarn tenacity modeling using artificial neural networks and development of a decision support system based on genetic algorithms Journal of AI and Data Mnng Vol 2, No, 204, 73-78 Yarn tenacty modelng usng artfcal neural networks and development of a decson support system based on genetc algorthms M Dasht, V Derham 2*, E Ekhtyar

More information

Wavelet Multi-Layer Perceptron Neural Network for Time-Series Prediction

Wavelet Multi-Layer Perceptron Neural Network for Time-Series Prediction Wavelet Mult-Layer Perceptron Neural Network for Tme-Seres Predcton Kok Keong Teo, Lpo Wang* and Zhpng Ln School of Electrcal and Electronc Engneerng Nanyang Technologcal Unversty Block S2, Nanyang Avenue

More information

NATIONAL RADIO ASTRONOMY OBSERVATORY Green Bank, West Virginia SPECTRAL PROCESSOR MEMO NO. 25. MEMORANDUM February 13, 1985

NATIONAL RADIO ASTRONOMY OBSERVATORY Green Bank, West Virginia SPECTRAL PROCESSOR MEMO NO. 25. MEMORANDUM February 13, 1985 NATONAL RADO ASTRONOMY OBSERVATORY Green Bank, West Vrgna SPECTRAL PROCESSOR MEMO NO. 25 MEMORANDUM February 13, 1985 To: Spectral Processor Group From: R. Fsher Subj: Some Experments wth an nteger FFT

More information

NEURO-FUZZY TECHNIQUES FOR SYSTEM MODELLING AND CONTROL

NEURO-FUZZY TECHNIQUES FOR SYSTEM MODELLING AND CONTROL Paper presented at FAE Symposum, European Unversty of Lefke, Nov 22 NEURO-FUZZY ECHNIQUES FOR SYSEM MODELLING AND CONROL Mohandas K P Faculty of Archtecture and Engneerng European Unversty of Lefke urksh

More information

PERFORMANCE EVALUATION OF BOOTH AND WALLACE MULTIPLIER USING FIR FILTER. Chirala Engineering College, Chirala.

PERFORMANCE EVALUATION OF BOOTH AND WALLACE MULTIPLIER USING FIR FILTER. Chirala Engineering College, Chirala. PERFORMANCE EVALUATION OF BOOTH AND WALLACE MULTIPLIER USING FIR FILTER 1 H. RAGHUNATHA RAO, T. ASHOK KUMAR & 3 N.SURESH BABU 1,&3 Department of Electroncs and Communcaton Engneerng, Chrala Engneerng College,

More information

RBF NN Based Marine Diesel Engine Generator Modeling

RBF NN Based Marine Diesel Engine Generator Modeling 005 Amercan Control Conference June 8-0, 005. Portland, OR, USA ThB4.6 RBF Based Marne Desel Engne Generator Modelng Wefeng Sh, Janmn Yang, Tanhao Tang, Member, IEEE Abstract For buldng a real tme marne

More information

Enhanced Artificial Neural Networks Using Complex Numbers

Enhanced Artificial Neural Networks Using Complex Numbers Enhanced Artfcal Neural Networks Usng Complex Numers Howard E. Mchel and A. A. S. Awwal Computer Scence Department Unversty of Dayton Dayton, OH 45469-60 mchel@cps.udayton.edu Computer Scence & Engneerng

More information

Learning Ensembles of Convolutional Neural Networks

Learning Ensembles of Convolutional Neural Networks Learnng Ensembles of Convolutonal Neural Networks Lran Chen The Unversty of Chcago Faculty Mentor: Greg Shakhnarovch Toyota Technologcal Insttute at Chcago 1 Introducton Convolutonal Neural Networks (CNN)

More information

ROBUST IDENTIFICATION AND PREDICTION USING WILCOXON NORM AND PARTICLE SWARM OPTIMIZATION

ROBUST IDENTIFICATION AND PREDICTION USING WILCOXON NORM AND PARTICLE SWARM OPTIMIZATION 7th European Sgnal Processng Conference (EUSIPCO 9 Glasgow, Scotland, August 4-8, 9 ROBUST IDENTIFICATION AND PREDICTION USING WILCOXON NORM AND PARTICLE SWARM OPTIMIZATION Babta Majh, G. Panda and B.

More information

Static Security Based Available Transfer Capability (ATC) Computation for Real-Time Power Markets

Static Security Based Available Transfer Capability (ATC) Computation for Real-Time Power Markets SERBIAN JOURNAL OF ELECTRICAL ENGINEERING Vol. 7, No. 2, November 2010, 269-289 UDK: 004.896:621.311.15 Statc Securty Based Avalable Transfer Capablty (ATC) Computaton for Real-Tme Power Markets Chntham

More information

Applying Rprop Neural Network for the Prediction of the Mobile Station Location

Applying Rprop Neural Network for the Prediction of the Mobile Station Location Sensors 0,, 407-430; do:0.3390/s040407 OPE ACCESS sensors ISS 44-80 www.mdp.com/journal/sensors Communcaton Applyng Rprop eural etwork for the Predcton of the Moble Staton Locaton Chen-Sheng Chen, * and

More information

A MODIFIED DIFFERENTIAL EVOLUTION ALGORITHM IN SPARSE LINEAR ANTENNA ARRAY SYNTHESIS

A MODIFIED DIFFERENTIAL EVOLUTION ALGORITHM IN SPARSE LINEAR ANTENNA ARRAY SYNTHESIS A MODIFIED DIFFERENTIAL EVOLUTION ALORITHM IN SPARSE LINEAR ANTENNA ARRAY SYNTHESIS Kaml Dmller Department of Electrcal-Electroncs Engneerng rne Amercan Unversty North Cyprus, Mersn TURKEY kdmller@gau.edu.tr

More information

A Preliminary Study on Targets Association Algorithm of Radar and AIS Using BP Neural Network

A Preliminary Study on Targets Association Algorithm of Radar and AIS Using BP Neural Network Avalable onlne at www.scencedrect.com Proceda Engneerng 5 (2 44 445 A Prelmnary Study on Targets Assocaton Algorthm of Radar and AIS Usng BP Neural Networ Hu Xaoru a, Ln Changchuan a a Navgaton Insttute

More information

BP Neural Network based on PSO Algorithm for Temperature Characteristics of Gas Nanosensor

BP Neural Network based on PSO Algorithm for Temperature Characteristics of Gas Nanosensor 2318 JOURNAL OF COMPUTERS, VOL. 7, NO. 9, SEPTEMBER 2012 BP Neural Network based on PSO Algorthm for Temperature Characterstcs of Gas Nanosensor Weguo Zhao Center of Educaton Technology, Hebe Unversty

More information

THE INCREDIBLE SHRINKING NEURAL NETWORK: NEW PERSPECTIVES ON LEARNING REPRESENTA-

THE INCREDIBLE SHRINKING NEURAL NETWORK: NEW PERSPECTIVES ON LEARNING REPRESENTA- Under revew as a conference paper at ICLR 217 THE INCREDIBLE SHRINKING NEURAL NETWORK: NEW PERSPECTIVES ON LEARNING REPRESENTA- TIONS THROUGH THE LENS OF PRUNING Nkolas Wolfe, Adtya Sharma & Bhksha Ra

More information

4.3- Modeling the Diode Forward Characteristic

4.3- Modeling the Diode Forward Characteristic 2/8/2012 3_3 Modelng the ode Forward Characterstcs 1/3 4.3- Modelng the ode Forward Characterstc Readng Assgnment: pp. 179-188 How do we analyze crcuts wth juncton dodes? 2 ways: Exact Solutons ffcult!

More information

On the Usefulness of Fibonacci Compression Codes

On the Usefulness of Fibonacci Compression Codes The Computer Journal Advance Access publshed May 14, 2009 The Author 2009 Publshed by Oxford Unversty Press on behalf of The Brtsh Computer Socety All rghts reserved For Permssons, please emal: journalspermssons@oxfordjournalsorg

More information

Performance analysis of a RLS-based MLP-DFE in time-invariant and time-varying channels

Performance analysis of a RLS-based MLP-DFE in time-invariant and time-varying channels Dgtal Sgnal Processng 18 (2008) 307 320 www.elsever.com/locate/dsp Performance analyss of a RLS-based MLP-DFE n tme-nvarant and tme-varyng channels Kashf Mahmood, Abdelmalek Zdour, Azzedne Zergune Electrcal

More information

IEE Electronics Letters, vol 34, no 17, August 1998, pp ESTIMATING STARTING POINT OF CONDUCTION OF CMOS GATES

IEE Electronics Letters, vol 34, no 17, August 1998, pp ESTIMATING STARTING POINT OF CONDUCTION OF CMOS GATES IEE Electroncs Letters, vol 34, no 17, August 1998, pp. 1622-1624. ESTIMATING STARTING POINT OF CONDUCTION OF CMOS GATES A. Chatzgeorgou, S. Nkolads 1 and I. Tsoukalas Computer Scence Department, 1 Department

More information

To: Professor Avitabile Date: February 4, 2003 From: Mechanical Student Subject: Experiment #1 Numerical Methods Using Excel

To: Professor Avitabile Date: February 4, 2003 From: Mechanical Student Subject: Experiment #1 Numerical Methods Using Excel To: Professor Avtable Date: February 4, 3 From: Mechancal Student Subject:.3 Experment # Numercal Methods Usng Excel Introducton Mcrosoft Excel s a spreadsheet program that can be used for data analyss,

More information

Comparative Analysis of Reuse 1 and 3 in Cellular Network Based On SIR Distribution and Rate

Comparative Analysis of Reuse 1 and 3 in Cellular Network Based On SIR Distribution and Rate Comparatve Analyss of Reuse and 3 n ular Network Based On IR Dstrbuton and Rate Chandra Thapa M.Tech. II, DEC V College of Engneerng & Technology R.V.. Nagar, Chttoor-5727, A.P. Inda Emal: chandra2thapa@gmal.com

More information

Parameter Free Iterative Decoding Metrics for Non-Coherent Orthogonal Modulation

Parameter Free Iterative Decoding Metrics for Non-Coherent Orthogonal Modulation 1 Parameter Free Iteratve Decodng Metrcs for Non-Coherent Orthogonal Modulaton Albert Gullén Fàbregas and Alex Grant Abstract We study decoder metrcs suted for teratve decodng of non-coherently detected

More information

Strain Gauge Measuring Amplifier BA 660

Strain Gauge Measuring Amplifier BA 660 Stran Gauge Measurng Amplfer BA 660 Orgnal of the Manual BA660 / IP20 BA660 / IP66 Table of Contents 1. Safety precautons...2 1.1. Feld of applcaton...2 1.2. Installaton...2 1.3. Mantenance...2 2. Functon...2

More information

Estimation of Solar Radiations Incident on a Photovoltaic Solar Module using Neural Networks

Estimation of Solar Radiations Incident on a Photovoltaic Solar Module using Neural Networks XXVI. ASR '2001 Semnar, Instruments and Control, Ostrava, Aprl 26-27, 2001 Paper 14 Estmaton of Solar Radatons Incdent on a Photovoltac Solar Module usng Neural Networks ELMINIR, K. Hamdy 1, ALAM JAN,

More information

A Novel Hybrid Neural Network for Data Clustering

A Novel Hybrid Neural Network for Data Clustering A Novel Hybrd Neural Network for Data Clusterng Dongha Guan, Andrey Gavrlov Department of Computer Engneerng Kyung Hee Unversty, Korea dongha@oslab.khu.ac.kr, Avg1952@rambler.ru Abstract. Clusterng plays

More information

Prevention of Sequential Message Loss in CAN Systems

Prevention of Sequential Message Loss in CAN Systems Preventon of Sequental Message Loss n CAN Systems Shengbng Jang Electrcal & Controls Integraton Lab GM R&D Center, MC: 480-106-390 30500 Mound Road, Warren, MI 48090 shengbng.jang@gm.com Ratnesh Kumar

More information

Artificial Neural Networks for Cognitive Radio Network: A Survey

Artificial Neural Networks for Cognitive Radio Network: A Survey Internatonal Journal of Electroncs and Communcaton Engneerng Artfcal Neural Networks for Cogntve Rado Network: A Survey Vshnu Pratap Sngh Krar Abstract The man am of a communcaton system s to acheve maxmum

More information

Sensors for Motion and Position Measurement

Sensors for Motion and Position Measurement Sensors for Moton and Poston Measurement Introducton An ntegrated manufacturng envronment conssts of 5 elements:- - Machne tools - Inspecton devces - Materal handlng devces - Packagng machnes - Area where

More information

Target Response Adaptation for Correlation Filter Tracking

Target Response Adaptation for Correlation Filter Tracking Target Response Adaptaton for Correlaton Flter Tracng Adel Bb, Matthas Mueller, and Bernard Ghanem Image and Vdeo Understandng Laboratory IVUL, Kng Abdullah Unversty of Scence and Technology KAUST, Saud

More information

Prediction of Rainfall Using MLP and RBF Networks N. Vivekanandan Central Water and Power Research Station, Pune

Prediction of Rainfall Using MLP and RBF Networks N. Vivekanandan Central Water and Power Research Station, Pune Int. J. Advanced etworkng and Applcatons Volume: 05, Issue: 04, Pages:974-979 (204 ISS : 0975-0290 974 Predcton of Ranfall Usng MLP and RBF etworks. Vvekanandan Central Water and Power Research Staton,

More information

A Comparison of Two Equivalent Real Formulations for Complex-Valued Linear Systems Part 2: Results

A Comparison of Two Equivalent Real Formulations for Complex-Valued Linear Systems Part 2: Results AMERICAN JOURNAL OF UNDERGRADUATE RESEARCH VOL. 1 NO. () A Comparson of Two Equvalent Real Formulatons for Complex-Valued Lnear Systems Part : Results Abnta Munankarmy and Mchael A. Heroux Department of

More information

Network Theory. EC / EE / IN. for

Network Theory.   EC / EE / IN. for Network Theory for / / IN By www.thegateacademy.com Syllabus Syllabus for Networks Network Graphs: Matrces Assocated Wth Graphs: Incdence, Fundamental ut Set and Fundamental rcut Matrces. Soluton Methods:

More information

Comparison of Reference Compensating Current Estimation Techniques for Shunt Active Filter

Comparison of Reference Compensating Current Estimation Techniques for Shunt Active Filter Comparson of Reference Compensatng Current Estmaton Technques for Shunt Acte Flter R.SHANMUGHA SUNDARAM K.J.POORNASEVAN N.DEVARAJAN Department of Electrcal & Electroncs Engneerng Goernment College of Technology

More information

Short Term Load Forecasting based on An Optimized Architecture of Hybrid Neural Network Model

Short Term Load Forecasting based on An Optimized Architecture of Hybrid Neural Network Model Short Term Load Forecastng based on An Optmzed Archtecture of Hybrd Neural Network Model Fras Shhab Ahmed Turksh Aeronautcal Assocaton Unversty Department of Informaton Technology Ankara, Turkey Mnstry

More information

Lecture 30: Audio Amplifiers

Lecture 30: Audio Amplifiers Whtes, EE 322 Lecture 30 Page 1 of 9 Lecture 30: Audo Amplfers Once the audo sgnal leaes the Product Detector, there are two more stages t passes through before beng output to the speaker (ref. Fg. 1.13):

More information

Indirect Symmetrical PST Protection Based on Phase Angle Shift and Optimal Radial Basis Function Neural Network

Indirect Symmetrical PST Protection Based on Phase Angle Shift and Optimal Radial Basis Function Neural Network Indrect Symmetrcal PST Protecton Based on Phase Angle Shft and Optmal Radal Bass Functon Neural Networ Shalendra Kumar Bhaser Department of Electrcal Engneerng Indan Insttute of Technology Rooree, Inda

More information

Calculation of the received voltage due to the radiation from multiple co-frequency sources

Calculation of the received voltage due to the radiation from multiple co-frequency sources Rec. ITU-R SM.1271-0 1 RECOMMENDATION ITU-R SM.1271-0 * EFFICIENT SPECTRUM UTILIZATION USING PROBABILISTIC METHODS Rec. ITU-R SM.1271 (1997) The ITU Radocommuncaton Assembly, consderng a) that communcatons

More information

Chain Codes. Shape Representation and Description. Signatures. Polygonal Approximations

Chain Codes. Shape Representation and Description. Signatures. Polygonal Approximations Shae Reresentaton and Descrton Reresentaton Matchng or comarng reresentatons for shae recognton Invarance wth resect to nusance arameters Image codng Descrton Classf shaes based on a descrtor Invarance

More information

Speech bandwidth expansion based on Deep Neural Networks

Speech bandwidth expansion based on Deep Neural Networks INTERSPEECH 2015 Speech bandwdth expanson based on Deep Neural Networks Yngxue Wang 1,2, Shenghu hao 1, Wenbo Lu 3,4, Mng L 3,5,Jngmng Kuang 1 1 School of Informaton and Electroncs, Beng Insttute of Technology,

More information

Artificial Intelligence Techniques Applications for Power Disturbances Classification

Artificial Intelligence Techniques Applications for Power Disturbances Classification Internatonal Journal of Electrcal and Computer Engneerng 3:5 28 Artfcal Intellgence Technques Applcatons for Power Dsturbances Classfcaton K.Manmala, Dr.K.Selv and R.Ahla Abstract Artfcal Intellgence (AI)

More information

Phoneme Probability Estimation with Dynamic Sparsely Connected Artificial Neural Networks

Phoneme Probability Estimation with Dynamic Sparsely Connected Artificial Neural Networks The Free Speech Journal, Issue # 5(1997) Publshed 10/22/97 1997 All rghts reserved. Phoneme Probablty Estmaton wth Dynamc Sparsely Connected Artfcal Neural Networks Nkko Ström, (nkko@speech.kth.se) Department

More information

熊本大学学術リポジトリ. Kumamoto University Repositor

熊本大学学術リポジトリ. Kumamoto University Repositor 熊本大学学術リポジトリ Kumamoto Unversty Repostor Ttle Wreless LAN Based Indoor Poston and Its Smulaton Author(s) Ktasuka, Teruak; Nakansh, Tsune CtatonIEEE Pacfc RIM Conference on Comm Computers, and Sgnal Processng

More information

Performance Analysis of Cellular Radio System Using Artificial Neural Networks

Performance Analysis of Cellular Radio System Using Artificial Neural Networks Amercan Journal of Neural Networks and Applcatons 27; 3(): 5-3 http://www.scencepublshnggroup.com/j/ajnna do:.648/j.ajnna.273.2 ISSN: 2469-74 (rnt); ISSN: 2469-749 (Onlne) erformance Analyss of Cellular

More information

SPST (single-pole single-throw) switches

SPST (single-pole single-throw) switches SPST (sngle-pole sngle-throw) swtches SPST swtch, wth oltage and current polartes defned wth SPDT swtch: 2 Buck certer L L (t) C R V All power semcductor deces funct as SPST swtches. wth two SPST swtches:

More information

A NSGA-II algorithm to solve a bi-objective optimization of the redundancy allocation problem for series-parallel systems

A NSGA-II algorithm to solve a bi-objective optimization of the redundancy allocation problem for series-parallel systems 0 nd Internatonal Conference on Industral Technology and Management (ICITM 0) IPCSIT vol. 49 (0) (0) IACSIT Press, Sngapore DOI: 0.776/IPCSIT.0.V49.8 A NSGA-II algorthm to solve a b-obectve optmzaton of

More information

FAST ELECTRON IRRADIATION EFFECTS ON MOS TRANSISTOR MICROSCOPIC PARAMETERS EXPERIMENTAL DATA AND THEORETICAL MODELS

FAST ELECTRON IRRADIATION EFFECTS ON MOS TRANSISTOR MICROSCOPIC PARAMETERS EXPERIMENTAL DATA AND THEORETICAL MODELS Journal of Optoelectroncs and Advanced Materals Vol. 7, No., June 5, p. 69-64 FAST ELECTRON IRRAIATION EFFECTS ON MOS TRANSISTOR MICROSCOPIC PARAMETERS EXPERIMENTAL ATA AN THEORETICAL MOELS G. Stoenescu,

More information

Available Transfer Capability (ATC) Under Deregulated Power Systems

Available Transfer Capability (ATC) Under Deregulated Power Systems Volume-4, Issue-2, Aprl-2, IN : 2-758 Internatonal Journal of Engneerng and Management Research Avalable at: www.emr.net Page Number: 3-8 Avalable Transfer Capablty (ATC) Under Deregulated Power ystems

More information

Design and Implementation of DDFS Based on Quasi-linear Interpolation Algorithm

Design and Implementation of DDFS Based on Quasi-linear Interpolation Algorithm Desgn and Implementaton of DDFS Based on Quas-lnear Interpolaton Algorthm We Wang a, Yuanyuan Xu b and Hao Yang c College of Electroncs Engneerng, Chongqng Unversty of Posts and Telecommuncatons, Chongqng

More information

Adaptive Modulation for Multiple Antenna Channels

Adaptive Modulation for Multiple Antenna Channels Adaptve Modulaton for Multple Antenna Channels June Chul Roh and Bhaskar D. Rao Department of Electrcal and Computer Engneerng Unversty of Calforna, San Dego La Jolla, CA 993-7 E-mal: jroh@ece.ucsd.edu,

More information

CHAPTER 4 INSTANTANEOUS SYMMETRICAL COMPONENT THEORY

CHAPTER 4 INSTANTANEOUS SYMMETRICAL COMPONENT THEORY 74 CHAPTER 4 INSTANTANEOUS SYMMETRICAL COMPONENT THEORY 4. INTRODUCTION Ths chapter deals wth nstantaneous symmetrcal components theory for current and oltage compenton. The technque was ntroduced by Forteue.

More information

Characteristics of New Single Phase Voltage Doubler Rectifier Circuit using the Partial Switching Strategy

Characteristics of New Single Phase Voltage Doubler Rectifier Circuit using the Partial Switching Strategy IEEE PEDS 217, Honolulu, USA 12 15 December 217 Characterstcs of New gle Phase Voltage Doubler Rectfer Crcut usng the Partal Swtchng Strategy Kenj Ame Akto Kumaga Takahsa Ohj Kyohe Kyota Masaak Saku Unersty

More information

Equity trend prediction with neural networks

Equity trend prediction with neural networks Res. Lett. Inf. Math. Sc., 2004, Vol. 6, pp 15-29 15 Avalable onlne at http://ms.massey.ac.nz/research/letters/ Equty trend predcton wth neural networks R.HALLIDAY Insttute of Informaton & Mathematcal

More information

ONLINE POWER SYSTEM CONTINGENCY SCREENING AND RANKING METHODS USING RADIAL BASIS NEURAL NETWORKS

ONLINE POWER SYSTEM CONTINGENCY SCREENING AND RANKING METHODS USING RADIAL BASIS NEURAL NETWORKS Internatonal Journal of Electrcal and Electroncs Engneerng Research (IJEEER) ISSN(P): 2250-155X; ISSN(E): 2278-943X Vol. 6, Issue 3, Jun 2016, 9-16 TJPRC Pvt. Ltd ONLINE POWER SYSTEM CONTINGENCY SCREENING

More information

Exponential-Weight Multilayer Perceptron

Exponential-Weight Multilayer Perceptron Exponental-Weght Multlayer Perceptron Farnood Merrkh Bayat, Xnje Guo and Dmtr Strukov ECE Department Unversty of Calforna Santa Barbara CA 93106-9560, USA E-mal: farnoodmb@ece.ucsb.edu Abstract Analog

More information

Robot Motion Planning Using Neural Networks: A Modified Theory

Robot Motion Planning Using Neural Networks: A Modified Theory 9 Robot Moton Plannng Usng Neural Networs: A Modfed Theory Subhrajt Bhattacharya, Sddharth Talapatra Department of Mechancal Engneerng, IIT Kharagpur Abstract -- A based on compettve learnng has been developed

More information

Optimization of Ancillary Services for System Security: Sequential vs. Simultaneous LMP calculation

Optimization of Ancillary Services for System Security: Sequential vs. Simultaneous LMP calculation Optmzaton of Ancllary Servces for System Securty: Sequental vs. Smultaneous LM calculaton Sddhartha Kumar Khatan, Yuan L, Student Member, IEEE, and Chen-Chng. Lu, Fellow, IEEE Abstract-- A lnear optmzaton

More information

Source Localization by TDOA with Random Sensor Position Errors - Part II: Mobile sensors

Source Localization by TDOA with Random Sensor Position Errors - Part II: Mobile sensors Source Localzaton by TDOA wth Random Sensor Poston Errors - Part II: Moble sensors Xaome Qu,, Lhua Xe EXOUISITUS, Center for E-Cty, School of Electrcal and Electronc Engneerng, Nanyang Technologcal Unversty,

More information

arxiv: v1 [cs.lg] 8 Jul 2016

arxiv: v1 [cs.lg] 8 Jul 2016 Overcomng Challenges n Fxed Pont Tranng of Deep Convolutonal Networks arxv:1607.02241v1 [cs.lg] 8 Jul 2016 Darryl D. Ln Qualcomm Research, San Dego, CA 92121 USA Sachn S. Talath Qualcomm Research, San

More information

An Improved Method in Transient Stability Assessment of a Power System Using Committee Neural Networks

An Improved Method in Transient Stability Assessment of a Power System Using Committee Neural Networks IJCSNS Internatonal Journal of Computer Scence and Network Securty, VOL.9 No., January 9 9 An Improved Method n Transent Stablty Assessment of a Power System Usng Commttee Neural Networks Reza Ebrahmpour

More information

Performance Analysis of Multi User MIMO System with Block-Diagonalization Precoding Scheme

Performance Analysis of Multi User MIMO System with Block-Diagonalization Precoding Scheme Performance Analyss of Mult User MIMO System wth Block-Dagonalzaton Precodng Scheme Yoon Hyun m and Jn Young m, wanwoon Unversty, Department of Electroncs Convergence Engneerng, Wolgye-Dong, Nowon-Gu,

More information

Grain Moisture Sensor Data Fusion Based on Improved Radial Basis Function Neural Network

Grain Moisture Sensor Data Fusion Based on Improved Radial Basis Function Neural Network Gran Mosture Sensor Data Fuson Based on Improved Radal Bass Functon Neural Network Lu Yang, Gang Wu, Yuyao Song, and Lanlan Dong 1 College of Engneerng, Chna Agrcultural Unversty, Bejng,100083, Chna zhjunr@gmal.com,{yanglu,maozhhua}@cau.edu.cn

More information

EXPERIMENTAL KOHONEN NEURAL NETWORK IMPLEMENTED IN CMOS 0.18 m TECHNOLOGY

EXPERIMENTAL KOHONEN NEURAL NETWORK IMPLEMENTED IN CMOS 0.18 m TECHNOLOGY 15 th Internatonal Conference MIXED DESIGN MIXDES 008 Pozna, POLAND 19-1 June 008 EXPERIMENTAL KOHONEN NEURAL NETWORK IMPLEMENTED IN CMOS 0.18m TECHNOLOGY R. DLUGOSZ 1,, T. TALASKA 3, J. DALECKI 3, R.

More information

Dynamic Lightpath Protection in WDM Mesh Networks under Risk-Disjoint Constraint

Dynamic Lightpath Protection in WDM Mesh Networks under Risk-Disjoint Constraint Dynamc Lghtpath Protecton n D esh Netors under Rs-Dsont Constrant Shengl Yuan* and Jason P. Jue *Department of Computer and athematcal Scences, Unversty of Houston Donton One an Street, Houston, TX 7700,

More information

Simultaneous Reconfiguration with DG Placement using Bit-Shift Operator Based TLBO

Simultaneous Reconfiguration with DG Placement using Bit-Shift Operator Based TLBO Smultaneous Reconfguraton wth Placement usng Bt-Shft Operator Based TLBO Ayan Ghosh, *Deepak Kumar EEE Department B.I.T Mesra, Ranch Jharkhand, Inda *deepakmek9@gmal.com S. R. Samantaray School of Electrcal

More information

The PID Controller Based on the Artificial Neural Network and the Differential Evolution Algorithm

The PID Controller Based on the Artificial Neural Network and the Differential Evolution Algorithm 2368 JOURNAL OF COMPUERS, VOL. 7, NO., OCOBER 22 he PID Controller Based on the Artfcal Neural Networ and the Dfferental Evoluton Algorthm We Lu he Control Scence and Engneerng Department of Dalan Unversty

More information

Image Compression Using Cascaded Neural Networks

Image Compression Using Cascaded Neural Networks Unversty of New Orleans ScholarWorks@UNO Unversty of New Orleans Theses and Dssertatons Dssertatons and Theses 8-7-2003 Image Compresson Usng Cascaded Neural Networks Chgoze Obegbu Unversty of New Orleans

More information

Medical Diagnosis using Incremental Evolution of Neural Network

Medical Diagnosis using Incremental Evolution of Neural Network Medcal Dagnoss usng Incremental Evoluton of Neural Network Rahul Kala 1, Harsh Vazran 2, Anupam Shukla 3 and Rtu Twar 4 1, 2, 3, 4 Soft Computng and Expert System Laboratory, Indan Insttute of Informaton

More information

Define Y = # of mobiles from M total mobiles that have an adequate link. Measure of average portion of mobiles allocated a link of adequate quality.

Define Y = # of mobiles from M total mobiles that have an adequate link. Measure of average portion of mobiles allocated a link of adequate quality. Wreless Communcatons Technologes 6::559 (Advanced Topcs n Communcatons) Lecture 5 (Aprl th ) and Lecture 6 (May st ) Instructor: Professor Narayan Mandayam Summarzed by: Steve Leung (leungs@ece.rutgers.edu)

More information

TEMPERATURE PREDICTION IN TIMBER USING ARTIFICIAL NEURAL NETWORKS

TEMPERATURE PREDICTION IN TIMBER USING ARTIFICIAL NEURAL NETWORKS TEMPERATURE PREDICTION IN TIMBER USING ARTIFICIAL NEURAL NETWORKS Paulo Cachm ABSTRACT: Neural networks are a owerful tool used to model roertes and behavour of materals n many areas of cvl engneerng alcatons.

More information