CHAPTER 1 AN OVERVIEW OF VLSI IMPLEMENTATION OF ANN

Size: px
Start display at page:

Download "CHAPTER 1 AN OVERVIEW OF VLSI IMPLEMENTATION OF ANN"

Transcription

1 1 CHAPTER 1 AN OVERVIEW OF VLSI IMPLEMENTATION OF ANN 1.1 INTRODUCTION A Biological Neural Network (BNN) has highly interconnected neurons that co-ordinate all the functions like breathing, thinking and reading. A partly developed structure of network at birth, is fully developed through experience and learning. Hence learning is essentially a process of establishing new connections or modifying the existing connections. Artificial Neurons are simple abstractions of biological neurons, programmed in software or modeled in hardware. The networks of artificial neurons known as Artificial Neural Networks (ANN) have a fraction of power of biological neural structures. They are often trained to solve complex functions (Hagen et al. 2002). The background work for the development of ANN had started in early 20 th century. It had started with the theories of learning and vision as an interdisciplinary work involving physics, psychology and neurophysiology. McCulloch and Pitts (1943) proposed the mathematical model in They proved that an ANN could compute both arithmetic and logical functions. Their contribution is acknowledged as the origin of ANN research. Hebb (1949) then proposed a mechanism for learning in biological neurons at the cellular level in Rosenblatt (1958) proposed the Perceptron model to solve the first practical application pattern recognition in It induced some interest in ANN research, but the model itself proved to suit only a limited class of problems. Around the same time, Widrow and Hoff

2 2 (1960) developed a new learning algorithm to train the ANN; the same is still in use. Minsky and Papert (1969) brought out that these networks are suitable only to solve linear separable problems. This fact and limited computer capabilities were the main deterrents that put a break on ANN research atleast for a decade. Development of memory architectures using ANN independently by Kohonen and Anderson (1972) and modeling of Self- Organizing Maps (SOM) by Grossberg (1976) were significant developments in the 70 s. Research in ANN has taken a rebirth during the 1980s, due to the availability of powerful computers and the development of two new concepts. The first was an associative memory using Recurrent Neural Network (RNN) in 1982 by Hopfield (1982). The second was the Multi-Layer Perceptron (MLP) with Back Propagation (BP) algorithm in 1986 by Rumelhart and McClelland (1986). With these developments, research in the field of ANN got reinvigorated with the exploration of new algorithms, and their implementations. Significant developments or attempts at applications had essentially been sporadic. ANNs have been explored in different fields like Aerospace, Banking, Defense, Electronics, Financial, Medical, Robotics, Speech Processing and Telecommunications (Hagen et al. 2002). Wide variety of applications of these fields ranging from language processing, control function, image processing, system modeling and prediction, to pattern recognition and classification (Maeda and Tada 2003) have encouraged its future scope. 1.2 BIOLOGICAL NEURAL NETWORK (BNN) The characteristics of brain function have inspired the development of ANN. Approximately neurons with ~ 10 4 connections per neuron form the biological neural network (Hagen et al. 2002). The neurons have the dendrites, the cell body (soma) and the axon' as shown in Figure 1.1.

3 3 Dendrites are nerve fibres that carry electrical signals into the cell body, where it is summed up and the threshold decides the output. The axon is a long fibre that conducts the signals to other neurons. A point that connects the axon of one neuron to the dendrite of another neuron is synapse. The function of the NN is determined by a complex chemical process, which in turn is influenced by the architecture and the synaptic strength. Only a portion of the neural structure is developed at birth and continuously grows through experience. Though the biological neurons are very slow (with the response time of the order of 10-3 s), the brain computes faster than a computer due to the massive parallel structure of the former. The biological and artificial neural networks are similar in the following context: They are highly interconnected. Their way of connection determines the function. They have massive parallelism that solves complex functions. (nerve fibre) (cell body) (long fibre) Figure 1.1 A Biological Neuron

4 4 It is worth stressing here that, the motivation for realization of ANN in hardware is primarily from the last of the above, namely massive parallelism and the need for solutions for complex problems in hardware with Very Large Scale Integration (VLSI) technology as well as using optical devices. The focus of the present work is on VLSI implementation of ANN. 1.3 ARTIFICIAL NEURAL NETWORKS Artificial Neural Network (ANN) is a model of highly interconnected networks. It comprises simple processing elements known as neurons. It results in a high degree of parallel computation (Graf et al. 1988). In-built potential of ANN enables it to solve problems of high complexity. Realization of ANN had essentially been in software. It can be executed with the help of a program in MATLAB or using the dedicated software like Neurodimensions, Neurosolutions, NeuNet Pro, Neuralware etc., to cite a few. ANN is proved to be a universal approximator (Brown and Harris 1994, Hornick et al. 1985) with the ability to learn. Learning is a recursive process involving multiple iterations which takes a long time, when implemented in software. However availability of powerful hardware at affordable cost has opened up the interesting possibility of realizing ANN in hardware. The focus of the present work is on VLSI hardware realization of ANN that facilitates a portable, adaptive and re-configurable system development. A model of an artificial neuron is shown in Figure 1.2. It comprises synapse, summer and an activation (threshold) function block. An individual neuron does very little by way of computation; rather it carries out thresholding of a combined input (Graf et al. 1988). A synapse is modeled as a multiplier that multiplies each input with its stored weight synaptic strength. The computation done by the whole network depends on the interconnections among the neurons. In Figure 1.2, x 1, x 2, x n are n inputs and w 1, w 2,..w n are respective weights of interconnections or synapses. The

5 5 thresholding and firing are the key output activities of a neuron. The former is governed by a function on a, which computes sum after multiplication where a, b i represent the net and bias respectively. x 1 Synapse x 2 w 1 w 2 x 3 w 3. Σ a f(a) Output y.. w n x n bias b 1 Summer Threshold Function Figure 1.2 Model of an Artificial Neuron n (1.1) i i i i=1 a = X W +b The net output y of the neuron is a function of its activation, y f (a) hence (1.2) n i i i (1.3) i 1 y f ( X W b ) The function in equation 1.3 involves multiplication and addition, resulting in a large circuit even for a moderate number of neurons. ANN can be classified based on the architecture and learning algorithms, which is elaborated in Appendix 1. Specific types of learning algorithms are briefly explained Types of Learning Algorithms Learning is a class of adaptation that adjusts the response of a network for unseen but similar stimuli through experience. It is an optimization problem. Here the weight space of a network can be searched,

6 6 when the topology and transfer functions are fixed. The training algorithms fall into three categories (Cauwenberghs 1997) namely: Supervised learning Unsupervised learning and Reinforced learning. One resorts to the choice amongst these, depending on the application. The work here is restricted to applications with known targets. Supervised learning being the best suited for such cases, is in focus in this work. Two types of supervised learning namely Back Propagation (BP) (Hikawa 2003b) and Simultaneous Perturbation (SP) (Maeda and Tada 2003) are utilized to learn weights here. (i) Back Propagation (BP) Algorithm Back Propagation (BP) learning has distinctive characteristics of nonlinearity and high degree of connectivity between different layers of network. It is determined by weights through the learning process. It consists of two passes through the different layers of the network; a forward pass and a backward pass. In the forward operation of learning, data from input layer is propagated to output layer through hidden layer neuron to compute the output. Then the algorithm executes the backward operation, which aims at minimizing the mean-square-error (mse) between the target and the output value. Computed error helps to update the weight values in the backward pass. Due to its efficiency, popularity and familiarity (Jabri and Flower 1992) the BP algorithm has been used extensively in the different phases of work presented.

7 7 (ii) Simultaneous Perturbation (SP) Algorithm BP algorithm assumes that the neurons have sigmoidal nonlinearity and the synapses are linear multipliers. These assumptions lead to larger synapses, imposing a constraint on silicon area. Moreover, hardware realization of BP algorithm is difficult due to the complexity in calculating the derivative of the sigmoid function (Maeda and Tada 2003). It also increases the interconnection complexity, since the modifying quantities are to be applied to all weights. A suitable alternative is to use Simultaneous Perturbation (SP) Learning, which is a simple and efficient algorithm. An input vector, a teach signal (target) and a set of random initial weights are presented to the network. The generated output is compared with target and the error is computed. Based on the error, the weight is modified and the output is computed again. Comparison of the result and the teach signal, gives perturbed error. Now the difference unit is activated to find the difference in error. From this, the weight modifying quantity is generated. It is then sent to all the weight units of the network. The error function helps to measure the gradient, which is a finite difference without involving complex calculations. Moreover, it makes no assumptions about the synaptic characteristics (Montalvo et al. 1997) and hence a compact synapse could be designed. It conserves the silicon area appreciably. Absence of error back-propagation circuit further minimizes the hardware Methods of Learning in Hardware Three different methods of learning have been reported in the literature (Reyneri 2003); Off-chip learning, On-chip learning and Chip-inthe-loop learning: Off-chip learning: The network is trained on an external computer, and weights are loaded on to the network. It is not

8 8 suited for analog systems, since analog storage is neither repeatable nor volatile. On-chip learning: The algorithm is implemented on the same chip itself. It consumes large space and preferred when adaptive and real-time systems are to be designed. Accuracy of the output depends on the resolution of trained weights represented as number of bits. Chip-in-the-loop learning: For situations wherein one has to tackle different problems, a two-pronged approach is to be followed. Firstly, the network is to be trained in a computer system, to elicit the parameters. Secondly, the weights so obtained, there-from are (to be utilized by ANN) to be download into the chip. Chip-in-the-loop learning is well suited for such a method. The applications considered in the present work being fixed, an elaborate procedure involving this twopronged approach is not called for and hence the method is not pursued further. 1.4 ANN IN VLSI HARDWARE The real promise of applications of the ANN model lies in the specialized micro-electronic hardware, to utilize the parallelism. In this respect, VLSI implementation of ANN is beneficial, to fully utilize the massive parallelism found in biological Neural Network (Mead 1989). Advances in VLSI have enabled realization of large and complex NN on a single chip (Vittoz 1990) if the components of the neuron are modeled precisely. Both computation time and power consumption can be minimized, when a compact design is ensured. A substantial part of the work is based on system design with off-chip learning. However, portable devices are very

9 9 demanding, in the sense that they need independence and minimal power. These should not be at the expense of speed. Hence a conscious attempt has been made to design a portable and independent system with on-chip learning. Direct fabrication of ANN in VLSI hardware is henceforth known as Neurohardware. The faster nature of the hardware that works in parallel increases the speed of computation of the Neurohardware (Marchesi et al. 1993, Palmes et al. 2005). It also exhibits improved fault tolerance to suit real-time applications (El-Marsy et al. 1997). The approach for hardware implementation of NN can be digital, analog, mixed-signal or pulse-stream based design (Murray et al. 1991). Out of these, analog designs being nonprogrammable are not pursued further in the present work. Rather an efficient hybrid approach that combines NN and Genetic Algorithm (GA), bringing up the Genetically Evolved Neural Network (GENN) is explored in digital domain. Different hardware platforms like Application Specific Integrated Circuits (ASIC), Digital Signal Processors (DSP) and Field-Programmable Gate Array (FPGA) have been explored for the implementation of ANN in the literature. ASIC-based designs are rigid in nature. DSP-based implementations are sequential in computation and hence might not suit the parallel computing NN. On the other hand, FPGA based implementations not only provide flexibility and reliability but enable parallel architecture realization. FPGA is a programmable device with a large number of generic logic blocks and interconnection blocks. Configuration of an FPGA decides the functionality based on the proper interconnections of the blocks. Re-configurability of FPGA allows the designer to realize the ANN to solve different tasks at hand (Braendler et al. 2002). Complex applications are configured on high density FPGAs, using automated synthesis software.

10 Digital Design of ANN Digital design technique has the following advantages: Simple, flexible and matured fabrication techniques. Re-configurable and adaptable designs. Easy to embed in applications. It is observed that the digital technique is not optimum in area and speed, especially when synapse multiplier is realized. In addition to that, the signals are to be converted to digital where they are analog in nature. Hence the second phase of implementation is executed in mixed-signal design domain Mixed-signal Design of ANN Advantages of analog design lie in their lower area and higher speed of operation. In contrast, the digital design scores in terms of programmability. A mixed signal design of ANN, judiciously combines the advantages of both of these. They are characterized by compact and highspeed analog synapse, analog neurons and digitally programmable weight storage Pulse-stream based Design of ANN Pulse-stream (PS) representations are widely accepted for implementing ANN in hardware (Murray et al. 1991). PS use quasi-periodic binary signals, which encode all the variables of ANN to bit streams. PS technique can be treated as a form of mixed-signal design technique, since it combines the merits of both analog circuit design processing and digital signal processing. Such an approach eases VLSI implementation (Murray 1992). It enables the intra and inter-chip communications with high noise immunity (Murray et al. 1991). It does not quantize the information; and

11 11 hence preserves the resolution as maintained in analog computation. Moreover, the communication of binary pulses representing analog information exhibits the advantages of digital signals and circuitry. Applying PS on ANN provides the following advantages over either fully analog or fully digital implementations (Reyneri et al. 1994, Ota and Wilamowski 1996): High noise-immunity. Easiness in re-configurability. Easiness in multiplexing and interfacing. Less susceptibility to process variations between devices Genetically Evolved Neural Network (GENN) Designing an optimal architecture to suit specific applications is a critical issue in the field of ANN. For such an implementation, one needs to know the complexity of the problem, number of hidden layers and neurons, convergence capability etc., (Franco and Cannas 2001). Most of the ANN realizations utilize BP algorithm and its variants. They assume a fixed ANN architecture and activation function; hence only weights are learnt. Too small a size deteriorates performance whereas too large a size, results in redundant connections, which increases the area consumption (Leung et al. 2003). Hence a structured procedure adopting, either constructive or pruning approaches (Setiono and Hui 1995, Reed 1993) can be followed. The first method starts with a network of minimal neurons, and adds neurons during training, if necessary. In contrast to this, the second method starts with a large network and deletes insignificant connections, neurons and layers during training. Both the methods consume a long computation time. A better alternative to the constructive or pruning algorithms is Evolutionary Algorithms (EA) as suggested by Miller et al. (1989). It results in an optimal

12 12 architecture through a search process in the architecture space. A point that satisfies the necessary constraints like simple architecture, least error and fast learning is chosen to be an optimal point. It helps to evolve an optimal architecture. It is logical for researchers to incorporate EA and ANN hoping that both approaches can complement and compensate each other s strength and weakness in tackling the problems (Palmes et al. 2003). It leads to Evolutionary Artificial Neural Network (EANN), which has adaptability to dynamic environment (Yao 1999). EA can broadly be classified as Evolutionary Programming (EP), Evolutionary Systems (ES) and Genetic Algorithms (GA), though many other forms are explored in the recent past (Palmes et al. 2005). GA depends on Crossover operator and the other two depend on Mutation. In this work, GA is chosen because crossover works best when there exists building blocks (Yao 1999). GA is a random search technique that suits complex optimization examples with a large number of parameters (Leung et al. 2003). GA is suitable for problems where gradient information is not available or is costly to obtain or where there is non-differentiable node transfer function involved (Siddique and Tokhi 2001). It is a derivate-free stochastic optimization method, applicable to both continuous and discrete optimization problems. GA adopts the natural phenomenon survival of the fittest, to retain not only the fittest individual but also the fittest genes (Srinivas and Patnaik 1994). 1.5 SCOPE AND OBJECTIVE OF THE WORK The work broadly involves four phases as outlined below: Efficient and flexible design of digital Neurohardwares.

13 13 Compact and high-speed design of mixed-signal Neurohardwares. Robust and re-programmable design of pulse-density Neurohardwares. Fast, adaptive and optimal design of Genetic Neurohardwares. The digital architecture implemented in the first phase of the work, diagnoses the bladder cancer and breast cancer cells. It follows the idea proposed by Moallemi (1991) with Quick Propagation off-chip learning, to classify the cell images to well and not well. It could be used in the preliminary stage of diagnosis procedure. The design proposed in this thesis, uses the feature extraction procedures to identify whether the cell is normal or cancerous, and thus it diagnoses the disease, which draws attention. Further, only software simulation is reported Moallemi (1991), but FPGA realization has been implemented in this thesis. In order to minimize the resource requirement, sequential processing nature of ANN is exploited (Himavathi et al. 2007). It follows the design principle of realizing only the single largest layer in hardware. Proper design of a control unit, realizes the whole network in a time-multiplexed way, which is chosen as the second architecture of the first phase. Look Up Table (LUT) based Activation Function (AF) is followed by Himavathi et al. (2007). The ANN is realized here with Piece-Wise Linear (PWL) AF to optimize area without much variation in accuracy, which forms a key contribution of the work. Moreover, analytical evaluation of weights obviates the need for separate learning algorithm in software or unit in hardware. Simulation and synthesis of designs, solving different problems, are presented. Implementation results exhibit the advantages and show that the objectives are satisfied. Hardware requirements are compared and speed is measured for different target devices.

14 14 Second phase of work targets mixed-signal design. The approach followed here is more fundamental in the sense that, the small-signal model of MOSFET is developed first using Simulink tool. It explores the domain of hardware/software co-design (Reyneri 2003). Realizing two different architectures (Ota and Wilamowski 1999, Koosh and Goodman 2002) of analog Synapse and Neuron with digital weights verify its versatility. Modeled MOSFET realizes the pulse-coupled neuron and transconductance neuron of two approaches respectively. This forms the significant part of the second phase. Moreover, the neuron is configured to solve the N-bit parity problem with N/2 neurons in the hidden layer (Wilamowski et al. 2003). In the third phase, different architectures that follow Pulse Density Modulation (PDM) technique are realized. Murray et al. (1991) had pointed out that, firing rate of action potential in biological neurons is categorized as frequency modulation. Hence the PD modulation scheme, which is based on frequency modulation, is utilized for implementation to mime the natural process. The first approach of implementation adopts off-chip BP learning to minimize the hardware. It is based on the architecture (Hikawa 2003b) that overcomes the drawbacks like fixed slope AF and restricted weight range of conventional methods. In order to realize a self-contained system, the second PDM architecture is implemented with on-chip learning. Hence a hardware friendly SP algorithm is chosen, which does not need a complex error propagation mechanism. A single learning unit that modifies all the weights of the network simultaneously, to optimize the hardware further is utilized. The final phase explains the development of Genetically Evolved Neural Network (GENN). Results of two different approaches are presented. Evolved weights are converted to binary stream of data and applied to digital design of GENN. It is to be stressed here that, the genetic evolution of Feed- Forward Neural Network (FFNN), to solve N-bit parity problem, has resulted

15 15 in the architecture with N/2 neurons in the hidden layer, which is otherwise found to be N neurons (Minnick 1961, Hertz et al. 1991). Thus, an appreciable reduction in hardware can be considered as an important contribution in the field of VLSI realization of ANN. Moreover, a neuron that does not involve a multiplier is designed specifically, to suit the hidden layer of ANN with binary inputs. The functionality is verified after synthesis through different target FPGAs. 1.6 ORGANIZATION OF THE THESIS Different design techniques of ANN realization in VLSI hardware are chosen for analysis in the present work. Implementation details are presented in separate chapters of the thesis. Chapter 1 presents various design approaches and their potential applications. Further, the limitations and scope for exploration are analyzed. Chapter 2 forms a review of the literature by considering various design techniques for study. Four different phases of implementations are discussed in consecutive chapters. The first phase of two different digital implementations on FPGA is presented in Chapter 3. In the first technique, the network perceives the hardware implementation of a novel application - diagnosis of bladder cancer and breast cancer cells. In the second approach, an ANN with layer multiplexing scheme is implemented wherein the PWL-AF with 18-bit fixed-point representation is followed. The scheme follows analytic evaluation of weights to solve XOR and four-bit even-parity generation. Chapter 4 deals with the second phase of implementation using the mixed-signal design technique. Instead of using any conventional SPICE tools, the Simulink tool is used to model the MOSFETs. It is configured to construct two different analog architectures of the synapse, neuron and the complete network. The first design adopts BP algorithm to solve two-bit

16 16 XOR, character recognition and N-bit parity problems. The second design follows Successive Approximation (SA) algorithm, to realize two-bit XOR and four-bit parity generation and checking architectures. The third phase of implementation based on a Pulse-Density (PD) encoding is presented in Chapter 5. Two different architectures of pulsedensity Neurohardware, one with programmable PWL-AF and the other with on-chip SP learning are realized. Two-bit XOR function and N-bit parity functions are implemented to validate both the architectures. Chapter 6 elaborates the fourth phase of implementation, which follows two approaches for the development of GENN. In the first approach, weight evolution of a fixed architecture is executed. In the second approach, invasive method is used where GA is explored to evolve the network structure and weight. Simultaneous evolution of structure and weight of a GENN solves N-bit Parity using only N/2 hidden layer neurons. Conclusion and scope for further studies are discussed in Chapter 7 by highlighting the contribution towards hardware implementation of ANN. The results of different approaches and architectures are analyzed in respective chapters.

Artificial Neural Networks

Artificial Neural Networks Artificial Neural Networks Andres Chavez Math 382/L T/Th 2:00-3:40 April 13, 2010 Chavez2 Abstract The main interest of this paper is Artificial Neural Networks (ANNs). A brief history of the development

More information

Course Outline. Course Grading. Where to go for help. Academic Integrity. EE-589 Introduction to Neural Networks NN 1 EE

Course Outline. Course Grading. Where to go for help. Academic Integrity. EE-589 Introduction to Neural Networks NN 1 EE EE-589 Introduction to Neural Assistant Prof. Dr. Turgay IBRIKCI Room # 305 (322) 338 6868 / 139 Wensdays 9:00-12:00 Course Outline The course is divided in two parts: theory and practice. 1. Theory covers

More information

A Neural Network GUI Tested on Text-To-Phoneme Mapping

A Neural Network GUI Tested on Text-To-Phoneme Mapping A Neural Network GUI Tested on Text-To-Phoneme Mapping MAARTEN TROMPPER Universiteit Utrecht m.f.a.trompper@students.uu.nl Abstract Text-to-phoneme (T2P) mapping is a necessary step in any speech synthesis

More information

Python Machine Learning

Python Machine Learning Python Machine Learning Unlock deeper insights into machine learning with this vital guide to cuttingedge predictive analytics Sebastian Raschka [ PUBLISHING 1 open source I community experience distilled

More information

Artificial Neural Networks written examination

Artificial Neural Networks written examination 1 (8) Institutionen för informationsteknologi Olle Gällmo Universitetsadjunkt Adress: Lägerhyddsvägen 2 Box 337 751 05 Uppsala Artificial Neural Networks written examination Monday, May 15, 2006 9 00-14

More information

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur Module 12 Machine Learning 12.1 Instructional Objective The students should understand the concept of learning systems Students should learn about different aspects of a learning system Students should

More information

OPTIMIZATINON OF TRAINING SETS FOR HEBBIAN-LEARNING- BASED CLASSIFIERS

OPTIMIZATINON OF TRAINING SETS FOR HEBBIAN-LEARNING- BASED CLASSIFIERS OPTIMIZATINON OF TRAINING SETS FOR HEBBIAN-LEARNING- BASED CLASSIFIERS Václav Kocian, Eva Volná, Michal Janošek, Martin Kotyrba University of Ostrava Department of Informatics and Computers Dvořákova 7,

More information

Software Maintenance

Software Maintenance 1 What is Software Maintenance? Software Maintenance is a very broad activity that includes error corrections, enhancements of capabilities, deletion of obsolete capabilities, and optimization. 2 Categories

More information

Circuit Simulators: A Revolutionary E-Learning Platform

Circuit Simulators: A Revolutionary E-Learning Platform Circuit Simulators: A Revolutionary E-Learning Platform Mahi Itagi Padre Conceicao College of Engineering, Verna, Goa, India. itagimahi@gmail.com Akhil Deshpande Gogte Institute of Technology, Udyambag,

More information

FUZZY EXPERT. Dr. Kasim M. Al-Aubidy. Philadelphia University. Computer Eng. Dept February 2002 University of Damascus-Syria

FUZZY EXPERT. Dr. Kasim M. Al-Aubidy. Philadelphia University. Computer Eng. Dept February 2002 University of Damascus-Syria FUZZY EXPERT SYSTEMS 16-18 18 February 2002 University of Damascus-Syria Dr. Kasim M. Al-Aubidy Computer Eng. Dept. Philadelphia University What is Expert Systems? ES are computer programs that emulate

More information

QuickStroke: An Incremental On-line Chinese Handwriting Recognition System

QuickStroke: An Incremental On-line Chinese Handwriting Recognition System QuickStroke: An Incremental On-line Chinese Handwriting Recognition System Nada P. Matić John C. Platt Λ Tony Wang y Synaptics, Inc. 2381 Bering Drive San Jose, CA 95131, USA Abstract This paper presents

More information

A Pipelined Approach for Iterative Software Process Model

A Pipelined Approach for Iterative Software Process Model A Pipelined Approach for Iterative Software Process Model Ms.Prasanthi E R, Ms.Aparna Rathi, Ms.Vardhani J P, Mr.Vivek Krishna Electronics and Radar Development Establishment C V Raman Nagar, Bangalore-560093,

More information

Knowledge-Based - Systems

Knowledge-Based - Systems Knowledge-Based - Systems ; Rajendra Arvind Akerkar Chairman, Technomathematics Research Foundation and Senior Researcher, Western Norway Research institute Priti Srinivas Sajja Sardar Patel University

More information

Evolutive Neural Net Fuzzy Filtering: Basic Description

Evolutive Neural Net Fuzzy Filtering: Basic Description Journal of Intelligent Learning Systems and Applications, 2010, 2: 12-18 doi:10.4236/jilsa.2010.21002 Published Online February 2010 (http://www.scirp.org/journal/jilsa) Evolutive Neural Net Fuzzy Filtering:

More information

Axiom 2013 Team Description Paper

Axiom 2013 Team Description Paper Axiom 2013 Team Description Paper Mohammad Ghazanfari, S Omid Shirkhorshidi, Farbod Samsamipour, Hossein Rahmatizadeh Zagheli, Mohammad Mahdavi, Payam Mohajeri, S Abbas Alamolhoda Robotics Scientific Association

More information

Human Emotion Recognition From Speech

Human Emotion Recognition From Speech RESEARCH ARTICLE OPEN ACCESS Human Emotion Recognition From Speech Miss. Aparna P. Wanare*, Prof. Shankar N. Dandare *(Department of Electronics & Telecommunication Engineering, Sant Gadge Baba Amravati

More information

Rule Learning With Negation: Issues Regarding Effectiveness

Rule Learning With Negation: Issues Regarding Effectiveness Rule Learning With Negation: Issues Regarding Effectiveness S. Chua, F. Coenen, G. Malcolm University of Liverpool Department of Computer Science, Ashton Building, Ashton Street, L69 3BX Liverpool, United

More information

INPE São José dos Campos

INPE São José dos Campos INPE-5479 PRE/1778 MONLINEAR ASPECTS OF DATA INTEGRATION FOR LAND COVER CLASSIFICATION IN A NEDRAL NETWORK ENVIRONNENT Maria Suelena S. Barros Valter Rodrigues INPE São José dos Campos 1993 SECRETARIA

More information

CS Machine Learning

CS Machine Learning CS 478 - Machine Learning Projects Data Representation Basic testing and evaluation schemes CS 478 Data and Testing 1 Programming Issues l Program in any platform you want l Realize that you will be doing

More information

Seminar - Organic Computing

Seminar - Organic Computing Seminar - Organic Computing Self-Organisation of OC-Systems Markus Franke 25.01.2006 Typeset by FoilTEX Timetable 1. Overview 2. Characteristics of SO-Systems 3. Concern with Nature 4. Design-Concepts

More information

Lecture 1: Machine Learning Basics

Lecture 1: Machine Learning Basics 1/69 Lecture 1: Machine Learning Basics Ali Harakeh University of Waterloo WAVE Lab ali.harakeh@uwaterloo.ca May 1, 2017 2/69 Overview 1 Learning Algorithms 2 Capacity, Overfitting, and Underfitting 3

More information

Proposal of Pattern Recognition as a necessary and sufficient principle to Cognitive Science

Proposal of Pattern Recognition as a necessary and sufficient principle to Cognitive Science Proposal of Pattern Recognition as a necessary and sufficient principle to Cognitive Science Gilberto de Paiva Sao Paulo Brazil (May 2011) gilbertodpaiva@gmail.com Abstract. Despite the prevalence of the

More information

An empirical study of learning speed in backpropagation

An empirical study of learning speed in backpropagation Carnegie Mellon University Research Showcase @ CMU Computer Science Department School of Computer Science 1988 An empirical study of learning speed in backpropagation networks Scott E. Fahlman Carnegie

More information

Evolution of Symbolisation in Chimpanzees and Neural Nets

Evolution of Symbolisation in Chimpanzees and Neural Nets Evolution of Symbolisation in Chimpanzees and Neural Nets Angelo Cangelosi Centre for Neural and Adaptive Systems University of Plymouth (UK) a.cangelosi@plymouth.ac.uk Introduction Animal communication

More information

Designing a Rubric to Assess the Modelling Phase of Student Design Projects in Upper Year Engineering Courses

Designing a Rubric to Assess the Modelling Phase of Student Design Projects in Upper Year Engineering Courses Designing a Rubric to Assess the Modelling Phase of Student Design Projects in Upper Year Engineering Courses Thomas F.C. Woodhall Masters Candidate in Civil Engineering Queen s University at Kingston,

More information

*** * * * COUNCIL * * CONSEIL OFEUROPE * * * DE L'EUROPE. Proceedings of the 9th Symposium on Legal Data Processing in Europe

*** * * * COUNCIL * * CONSEIL OFEUROPE * * * DE L'EUROPE. Proceedings of the 9th Symposium on Legal Data Processing in Europe *** * * * COUNCIL * * CONSEIL OFEUROPE * * * DE L'EUROPE Proceedings of the 9th Symposium on Legal Data Processing in Europe Bonn, 10-12 October 1989 Systems based on artificial intelligence in the legal

More information

(Sub)Gradient Descent

(Sub)Gradient Descent (Sub)Gradient Descent CMSC 422 MARINE CARPUAT marine@cs.umd.edu Figures credit: Piyush Rai Logistics Midterm is on Thursday 3/24 during class time closed book/internet/etc, one page of notes. will include

More information

Abstractions and the Brain

Abstractions and the Brain Abstractions and the Brain Brian D. Josephson Department of Physics, University of Cambridge Cavendish Lab. Madingley Road Cambridge, UK. CB3 OHE bdj10@cam.ac.uk http://www.tcm.phy.cam.ac.uk/~bdj10 ABSTRACT

More information

Document number: 2013/ Programs Committee 6/2014 (July) Agenda Item 42.0 Bachelor of Engineering with Honours in Software Engineering

Document number: 2013/ Programs Committee 6/2014 (July) Agenda Item 42.0 Bachelor of Engineering with Honours in Software Engineering Document number: 2013/0006139 Programs Committee 6/2014 (July) Agenda Item 42.0 Bachelor of Engineering with Honours in Software Engineering Program Learning Outcomes Threshold Learning Outcomes for Engineering

More information

Rule Learning with Negation: Issues Regarding Effectiveness

Rule Learning with Negation: Issues Regarding Effectiveness Rule Learning with Negation: Issues Regarding Effectiveness Stephanie Chua, Frans Coenen, and Grant Malcolm University of Liverpool Department of Computer Science, Ashton Building, Ashton Street, L69 3BX

More information

Learning Methods for Fuzzy Systems

Learning Methods for Fuzzy Systems Learning Methods for Fuzzy Systems Rudolf Kruse and Andreas Nürnberger Department of Computer Science, University of Magdeburg Universitätsplatz, D-396 Magdeburg, Germany Phone : +49.39.67.876, Fax : +49.39.67.8

More information

Bluetooth mlearning Applications for the Classroom of the Future

Bluetooth mlearning Applications for the Classroom of the Future Bluetooth mlearning Applications for the Classroom of the Future Tracey J. Mehigan, Daniel C. Doolan, Sabin Tabirca Department of Computer Science, University College Cork, College Road, Cork, Ireland

More information

Designing a Computer to Play Nim: A Mini-Capstone Project in Digital Design I

Designing a Computer to Play Nim: A Mini-Capstone Project in Digital Design I Session 1793 Designing a Computer to Play Nim: A Mini-Capstone Project in Digital Design I John Greco, Ph.D. Department of Electrical and Computer Engineering Lafayette College Easton, PA 18042 Abstract

More information

SARDNET: A Self-Organizing Feature Map for Sequences

SARDNET: A Self-Organizing Feature Map for Sequences SARDNET: A Self-Organizing Feature Map for Sequences Daniel L. James and Risto Miikkulainen Department of Computer Sciences The University of Texas at Austin Austin, TX 78712 dljames,risto~cs.utexas.edu

More information

Softprop: Softmax Neural Network Backpropagation Learning

Softprop: Softmax Neural Network Backpropagation Learning Softprop: Softmax Neural Networ Bacpropagation Learning Michael Rimer Computer Science Department Brigham Young University Provo, UT 84602, USA E-mail: mrimer@axon.cs.byu.edu Tony Martinez Computer Science

More information

Learning to Schedule Straight-Line Code

Learning to Schedule Straight-Line Code Learning to Schedule Straight-Line Code Eliot Moss, Paul Utgoff, John Cavazos Doina Precup, Darko Stefanović Dept. of Comp. Sci., Univ. of Mass. Amherst, MA 01003 Carla Brodley, David Scheeff Sch. of Elec.

More information

University of Groningen. Systemen, planning, netwerken Bosman, Aart

University of Groningen. Systemen, planning, netwerken Bosman, Aart University of Groningen Systemen, planning, netwerken Bosman, Aart IMPORTANT NOTE: You are advised to consult the publisher's version (publisher's PDF) if you wish to cite from it. Please check the document

More information

ENEE 302h: Digital Electronics, Fall 2005 Prof. Bruce Jacob

ENEE 302h: Digital Electronics, Fall 2005 Prof. Bruce Jacob Course Syllabus ENEE 302h: Digital Electronics, Fall 2005 Prof. Bruce Jacob 1. Basic Information Time & Place Lecture: TuTh 2:00 3:15 pm, CSIC-3118 Discussion Section: Mon 12:00 12:50pm, EGR-1104 Professor

More information

Language Acquisition Fall 2010/Winter Lexical Categories. Afra Alishahi, Heiner Drenhaus

Language Acquisition Fall 2010/Winter Lexical Categories. Afra Alishahi, Heiner Drenhaus Language Acquisition Fall 2010/Winter 2011 Lexical Categories Afra Alishahi, Heiner Drenhaus Computational Linguistics and Phonetics Saarland University Children s Sensitivity to Lexical Categories Look,

More information

Machine Learning and Data Mining. Ensembles of Learners. Prof. Alexander Ihler

Machine Learning and Data Mining. Ensembles of Learners. Prof. Alexander Ihler Machine Learning and Data Mining Ensembles of Learners Prof. Alexander Ihler Ensemble methods Why learn one classifier when you can learn many? Ensemble: combine many predictors (Weighted) combina

More information

Laboratorio di Intelligenza Artificiale e Robotica

Laboratorio di Intelligenza Artificiale e Robotica Laboratorio di Intelligenza Artificiale e Robotica A.A. 2008-2009 Outline 2 Machine Learning Unsupervised Learning Supervised Learning Reinforcement Learning Genetic Algorithms Genetics-Based Machine Learning

More information

Moderator: Gary Weckman Ohio University USA

Moderator: Gary Weckman Ohio University USA Moderator: Gary Weckman Ohio University USA Robustness in Real-time Complex Systems What is complexity? Interactions? Defy understanding? What is robustness? Predictable performance? Ability to absorb

More information

Breaking the Habit of Being Yourself Workshop for Quantum University

Breaking the Habit of Being Yourself Workshop for Quantum University Breaking the Habit of Being Yourself Workshop for Quantum University 2 Copyright Dr Joe Dispenza. June 2013. All rights reserved. 3 Copyright Dr Joe Dispenza. June 2013. All rights reserved. 4 Copyright

More information

Generative models and adversarial training

Generative models and adversarial training Day 4 Lecture 1 Generative models and adversarial training Kevin McGuinness kevin.mcguinness@dcu.ie Research Fellow Insight Centre for Data Analytics Dublin City University What is a generative model?

More information

Neuro-Symbolic Approaches for Knowledge Representation in Expert Systems

Neuro-Symbolic Approaches for Knowledge Representation in Expert Systems Published in the International Journal of Hybrid Intelligent Systems 1(3-4) (2004) 111-126 Neuro-Symbolic Approaches for Knowledge Representation in Expert Systems Ioannis Hatzilygeroudis and Jim Prentzas

More information

AGENDA LEARNING THEORIES LEARNING THEORIES. Advanced Learning Theories 2/22/2016

AGENDA LEARNING THEORIES LEARNING THEORIES. Advanced Learning Theories 2/22/2016 AGENDA Advanced Learning Theories Alejandra J. Magana, Ph.D. admagana@purdue.edu Introduction to Learning Theories Role of Learning Theories and Frameworks Learning Design Research Design Dual Coding Theory

More information

A Variation-Tolerant Multi-Level Memory Architecture Encoded in Two-state Memristors

A Variation-Tolerant Multi-Level Memory Architecture Encoded in Two-state Memristors A Variation-Tolerant Multi-Level Memory Architecture Encoded in Two-state Memristors Bin Wu and Matthew R. Guthaus Department of CE, University of California Santa Cruz Santa Cruz, CA 95064 {wubin6666,mrg}@soe.ucsc.edu

More information

ABSTRACT. A major goal of human genetics is the discovery and validation of genetic polymorphisms

ABSTRACT. A major goal of human genetics is the discovery and validation of genetic polymorphisms ABSTRACT DEODHAR, SUSHAMNA DEODHAR. Using Grammatical Evolution Decision Trees for Detecting Gene-Gene Interactions in Genetic Epidemiology. (Under the direction of Dr. Alison Motsinger-Reif.) A major

More information

Computer Science 141: Computing Hardware Course Information Fall 2012

Computer Science 141: Computing Hardware Course Information Fall 2012 Computer Science 141: Computing Hardware Course Information Fall 2012 September 4, 2012 1 Outline The main emphasis of this course is on the basic concepts of digital computing hardware and fundamental

More information

Word Segmentation of Off-line Handwritten Documents

Word Segmentation of Off-line Handwritten Documents Word Segmentation of Off-line Handwritten Documents Chen Huang and Sargur N. Srihari {chuang5, srihari}@cedar.buffalo.edu Center of Excellence for Document Analysis and Recognition (CEDAR), Department

More information

Radius STEM Readiness TM

Radius STEM Readiness TM Curriculum Guide Radius STEM Readiness TM While today s teens are surrounded by technology, we face a stark and imminent shortage of graduates pursuing careers in Science, Technology, Engineering, and

More information

Speaker Identification by Comparison of Smart Methods. Abstract

Speaker Identification by Comparison of Smart Methods. Abstract Journal of mathematics and computer science 10 (2014), 61-71 Speaker Identification by Comparison of Smart Methods Ali Mahdavi Meimand Amin Asadi Majid Mohamadi Department of Electrical Department of Computer

More information

A New Perspective on Combining GMM and DNN Frameworks for Speaker Adaptation

A New Perspective on Combining GMM and DNN Frameworks for Speaker Adaptation A New Perspective on Combining GMM and DNN Frameworks for Speaker Adaptation SLSP-2016 October 11-12 Natalia Tomashenko 1,2,3 natalia.tomashenko@univ-lemans.fr Yuri Khokhlov 3 khokhlov@speechpro.com Yannick

More information

Test Effort Estimation Using Neural Network

Test Effort Estimation Using Neural Network J. Software Engineering & Applications, 2010, 3: 331-340 doi:10.4236/jsea.2010.34038 Published Online April 2010 (http://www.scirp.org/journal/jsea) 331 Chintala Abhishek*, Veginati Pavan Kumar, Harish

More information

Knowledge Transfer in Deep Convolutional Neural Nets

Knowledge Transfer in Deep Convolutional Neural Nets Knowledge Transfer in Deep Convolutional Neural Nets Steven Gutstein, Olac Fuentes and Eric Freudenthal Computer Science Department University of Texas at El Paso El Paso, Texas, 79968, U.S.A. Abstract

More information

Major Milestones, Team Activities, and Individual Deliverables

Major Milestones, Team Activities, and Individual Deliverables Major Milestones, Team Activities, and Individual Deliverables Milestone #1: Team Semester Proposal Your team should write a proposal that describes project objectives, existing relevant technology, engineering

More information

ENME 605 Advanced Control Systems, Fall 2015 Department of Mechanical Engineering

ENME 605 Advanced Control Systems, Fall 2015 Department of Mechanical Engineering ENME 605 Advanced Control Systems, Fall 2015 Department of Mechanical Engineering Lecture Details Instructor Course Objectives Tuesday and Thursday, 4:00 pm to 5:15 pm Information Technology and Engineering

More information

Issues in the Mining of Heart Failure Datasets

Issues in the Mining of Heart Failure Datasets International Journal of Automation and Computing 11(2), April 2014, 162-179 DOI: 10.1007/s11633-014-0778-5 Issues in the Mining of Heart Failure Datasets Nongnuch Poolsawad 1 Lisa Moore 1 Chandrasekhar

More information

The Good Judgment Project: A large scale test of different methods of combining expert predictions

The Good Judgment Project: A large scale test of different methods of combining expert predictions The Good Judgment Project: A large scale test of different methods of combining expert predictions Lyle Ungar, Barb Mellors, Jon Baron, Phil Tetlock, Jaime Ramos, Sam Swift The University of Pennsylvania

More information

On Human Computer Interaction, HCI. Dr. Saif al Zahir Electrical and Computer Engineering Department UBC

On Human Computer Interaction, HCI. Dr. Saif al Zahir Electrical and Computer Engineering Department UBC On Human Computer Interaction, HCI Dr. Saif al Zahir Electrical and Computer Engineering Department UBC Human Computer Interaction HCI HCI is the study of people, computer technology, and the ways these

More information

BMBF Project ROBUKOM: Robust Communication Networks

BMBF Project ROBUKOM: Robust Communication Networks BMBF Project ROBUKOM: Robust Communication Networks Arie M.C.A. Koster Christoph Helmberg Andreas Bley Martin Grötschel Thomas Bauschert supported by BMBF grant 03MS616A: ROBUKOM Robust Communication Networks,

More information

Self Study Report Computer Science

Self Study Report Computer Science Computer Science undergraduate students have access to undergraduate teaching, and general computing facilities in three buildings. Two large classrooms are housed in the Davis Centre, which hold about

More information

Learning Structural Correspondences Across Different Linguistic Domains with Synchronous Neural Language Models

Learning Structural Correspondences Across Different Linguistic Domains with Synchronous Neural Language Models Learning Structural Correspondences Across Different Linguistic Domains with Synchronous Neural Language Models Stephan Gouws and GJ van Rooyen MIH Medialab, Stellenbosch University SOUTH AFRICA {stephan,gvrooyen}@ml.sun.ac.za

More information

I-COMPETERE: Using Applied Intelligence in search of competency gaps in software project managers.

I-COMPETERE: Using Applied Intelligence in search of competency gaps in software project managers. Information Systems Frontiers manuscript No. (will be inserted by the editor) I-COMPETERE: Using Applied Intelligence in search of competency gaps in software project managers. Ricardo Colomo-Palacios

More information

On the Combined Behavior of Autonomous Resource Management Agents

On the Combined Behavior of Autonomous Resource Management Agents On the Combined Behavior of Autonomous Resource Management Agents Siri Fagernes 1 and Alva L. Couch 2 1 Faculty of Engineering Oslo University College Oslo, Norway siri.fagernes@iu.hio.no 2 Computer Science

More information

School of Innovative Technologies and Engineering

School of Innovative Technologies and Engineering School of Innovative Technologies and Engineering Department of Applied Mathematical Sciences Proficiency Course in MATLAB COURSE DOCUMENT VERSION 1.0 PCMv1.0 July 2012 University of Technology, Mauritius

More information

Reinforcement Learning by Comparing Immediate Reward

Reinforcement Learning by Comparing Immediate Reward Reinforcement Learning by Comparing Immediate Reward Punit Pandey DeepshikhaPandey Dr. Shishir Kumar Abstract This paper introduces an approach to Reinforcement Learning Algorithm by comparing their immediate

More information

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas

P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou, C. Skourlas, J. Varnas Exploiting Distance Learning Methods and Multimediaenhanced instructional content to support IT Curricula in Greek Technological Educational Institutes P. Belsis, C. Sgouropoulou, K. Sfikas, G. Pantziou,

More information

EGRHS Course Fair. Science & Math AP & IB Courses

EGRHS Course Fair. Science & Math AP & IB Courses EGRHS Course Fair Science & Math AP & IB Courses Science Courses: AP Physics IB Physics SL IB Physics HL AP Biology IB Biology HL AP Physics Course Description Course Description AP Physics C (Mechanics)

More information

LEGO MINDSTORMS Education EV3 Coding Activities

LEGO MINDSTORMS Education EV3 Coding Activities LEGO MINDSTORMS Education EV3 Coding Activities s t e e h s k r o W t n e d Stu LEGOeducation.com/MINDSTORMS Contents ACTIVITY 1 Performing a Three Point Turn 3-6 ACTIVITY 2 Written Instructions for a

More information

Framewise Phoneme Classification with Bidirectional LSTM and Other Neural Network Architectures

Framewise Phoneme Classification with Bidirectional LSTM and Other Neural Network Architectures Framewise Phoneme Classification with Bidirectional LSTM and Other Neural Network Architectures Alex Graves and Jürgen Schmidhuber IDSIA, Galleria 2, 6928 Manno-Lugano, Switzerland TU Munich, Boltzmannstr.

More information

Speech Recognition at ICSI: Broadcast News and beyond

Speech Recognition at ICSI: Broadcast News and beyond Speech Recognition at ICSI: Broadcast News and beyond Dan Ellis International Computer Science Institute, Berkeley CA Outline 1 2 3 The DARPA Broadcast News task Aspects of ICSI

More information

Device Design And Process Window Analysis Of A Deep- Submicron Cmos Vlsi Technology (The Six Sigma Research Institute Series) By Philip E.

Device Design And Process Window Analysis Of A Deep- Submicron Cmos Vlsi Technology (The Six Sigma Research Institute Series) By Philip E. Device Design And Process Window Analysis Of A Deep- Submicron Cmos Vlsi Technology (The Six Sigma Research Institute Series) By Philip E. Madrid If you are searching for a ebook Device Design and Process

More information

Laboratorio di Intelligenza Artificiale e Robotica

Laboratorio di Intelligenza Artificiale e Robotica Laboratorio di Intelligenza Artificiale e Robotica A.A. 2008-2009 Outline 2 Machine Learning Unsupervised Learning Supervised Learning Reinforcement Learning Genetic Algorithms Genetics-Based Machine Learning

More information

A GENERIC SPLIT PROCESS MODEL FOR ASSET MANAGEMENT DECISION-MAKING

A GENERIC SPLIT PROCESS MODEL FOR ASSET MANAGEMENT DECISION-MAKING A GENERIC SPLIT PROCESS MODEL FOR ASSET MANAGEMENT DECISION-MAKING Yong Sun, a * Colin Fidge b and Lin Ma a a CRC for Integrated Engineering Asset Management, School of Engineering Systems, Queensland

More information

Firms and Markets Saturdays Summer I 2014

Firms and Markets Saturdays Summer I 2014 PRELIMINARY DRAFT VERSION. SUBJECT TO CHANGE. Firms and Markets Saturdays Summer I 2014 Professor Thomas Pugel Office: Room 11-53 KMC E-mail: tpugel@stern.nyu.edu Tel: 212-998-0918 Fax: 212-995-4212 This

More information

MASTER OF SCIENCE (M.S.) MAJOR IN COMPUTER SCIENCE

MASTER OF SCIENCE (M.S.) MAJOR IN COMPUTER SCIENCE Master of Science (M.S.) Major in Computer Science 1 MASTER OF SCIENCE (M.S.) MAJOR IN COMPUTER SCIENCE Major Program The programs in computer science are designed to prepare students for doctoral research,

More information

Department of Anatomy and Cell Biology Curriculum

Department of Anatomy and Cell Biology Curriculum Department of Anatomy and Cell Biology Curriculum The graduate program in Anatomy and Cell Biology prepares the student for a research and/or teaching career with concentrations in one or more of the following:

More information

ME 443/643 Design Techniques in Mechanical Engineering. Lecture 1: Introduction

ME 443/643 Design Techniques in Mechanical Engineering. Lecture 1: Introduction ME 443/643 Design Techniques in Mechanical Engineering Lecture 1: Introduction Instructor: Dr. Jagadeep Thota Instructor Introduction Born in Bangalore, India. B.S. in ME @ Bangalore University, India.

More information

Computer Science. Embedded systems today. Microcontroller MCR

Computer Science. Embedded systems today. Microcontroller MCR Computer Science Microcontroller Embedded systems today Prof. Dr. Siepmann Fachhochschule Aachen - Aachen University of Applied Sciences 24. März 2009-2 Minuteman missile 1962 Prof. Dr. Siepmann Fachhochschule

More information

A Reinforcement Learning Variant for Control Scheduling

A Reinforcement Learning Variant for Control Scheduling A Reinforcement Learning Variant for Control Scheduling Aloke Guha Honeywell Sensor and System Development Center 3660 Technology Drive Minneapolis MN 55417 Abstract We present an algorithm based on reinforcement

More information

A study of speaker adaptation for DNN-based speech synthesis

A study of speaker adaptation for DNN-based speech synthesis A study of speaker adaptation for DNN-based speech synthesis Zhizheng Wu, Pawel Swietojanski, Christophe Veaux, Steve Renals, Simon King The Centre for Speech Technology Research (CSTR) University of Edinburgh,

More information

GACE Computer Science Assessment Test at a Glance

GACE Computer Science Assessment Test at a Glance GACE Computer Science Assessment Test at a Glance Updated May 2017 See the GACE Computer Science Assessment Study Companion for practice questions and preparation resources. Assessment Name Computer Science

More information

Classification Using ANN: A Review

Classification Using ANN: A Review International Journal of Computational Intelligence Research ISSN 0973-1873 Volume 13, Number 7 (2017), pp. 1811-1820 Research India Publications http://www.ripublication.com Classification Using ANN:

More information

AUTOMATIC DETECTION OF PROLONGED FRICATIVE PHONEMES WITH THE HIDDEN MARKOV MODELS APPROACH 1. INTRODUCTION

AUTOMATIC DETECTION OF PROLONGED FRICATIVE PHONEMES WITH THE HIDDEN MARKOV MODELS APPROACH 1. INTRODUCTION JOURNAL OF MEDICAL INFORMATICS & TECHNOLOGIES Vol. 11/2007, ISSN 1642-6037 Marek WIŚNIEWSKI *, Wiesława KUNISZYK-JÓŹKOWIAK *, Elżbieta SMOŁKA *, Waldemar SUSZYŃSKI * HMM, recognition, speech, disorders

More information

A Case Study: News Classification Based on Term Frequency

A Case Study: News Classification Based on Term Frequency A Case Study: News Classification Based on Term Frequency Petr Kroha Faculty of Computer Science University of Technology 09107 Chemnitz Germany kroha@informatik.tu-chemnitz.de Ricardo Baeza-Yates Center

More information

Application of Virtual Instruments (VIs) for an enhanced learning environment

Application of Virtual Instruments (VIs) for an enhanced learning environment Application of Virtual Instruments (VIs) for an enhanced learning environment Philip Smyth, Dermot Brabazon, Eilish McLoughlin Schools of Mechanical and Physical Sciences Dublin City University Ireland

More information

Notes on The Sciences of the Artificial Adapted from a shorter document written for course (Deciding What to Design) 1

Notes on The Sciences of the Artificial Adapted from a shorter document written for course (Deciding What to Design) 1 Notes on The Sciences of the Artificial Adapted from a shorter document written for course 17-652 (Deciding What to Design) 1 Ali Almossawi December 29, 2005 1 Introduction The Sciences of the Artificial

More information

Forget catastrophic forgetting: AI that learns after deployment

Forget catastrophic forgetting: AI that learns after deployment Forget catastrophic forgetting: AI that learns after deployment Anatoly Gorshechnikov CTO, Neurala 1 Neurala at a glance Programming neural networks on GPUs since circa 2 B.C. Founded in 2006 expecting

More information

arxiv: v1 [cs.cv] 10 May 2017

arxiv: v1 [cs.cv] 10 May 2017 Inferring and Executing Programs for Visual Reasoning Justin Johnson 1 Bharath Hariharan 2 Laurens van der Maaten 2 Judy Hoffman 1 Li Fei-Fei 1 C. Lawrence Zitnick 2 Ross Girshick 2 1 Stanford University

More information

Integrating simulation into the engineering curriculum: a case study

Integrating simulation into the engineering curriculum: a case study Integrating simulation into the engineering curriculum: a case study Baidurja Ray and Rajesh Bhaskaran Sibley School of Mechanical and Aerospace Engineering, Cornell University, Ithaca, New York, USA E-mail:

More information

EECS 571 PRINCIPLES OF REAL-TIME COMPUTING Fall 10. Instructor: Kang G. Shin, 4605 CSE, ;

EECS 571 PRINCIPLES OF REAL-TIME COMPUTING Fall 10. Instructor: Kang G. Shin, 4605 CSE, ; EECS 571 PRINCIPLES OF REAL-TIME COMPUTING Fall 10 Instructor: Kang G. Shin, 4605 CSE, 763-0391; kgshin@umich.edu Number of credit hours: 4 Class meeting time and room: Regular classes: MW 10:30am noon

More information

TEACHING AND EXAMINATION REGULATIONS (TER) (see Article 7.13 of the Higher Education and Research Act) MASTER S PROGRAMME EMBEDDED SYSTEMS

TEACHING AND EXAMINATION REGULATIONS (TER) (see Article 7.13 of the Higher Education and Research Act) MASTER S PROGRAMME EMBEDDED SYSTEMS TEACHING AND EXAMINATION REGULATIONS (TER) (see Article 7.13 of the Higher Education and Research Act) 2015-2016 MASTER S PROGRAMME EMBEDDED SYSTEMS UNIVERSITY OF TWENTE 1 SECTION 1 GENERAL... 3 ARTICLE

More information

A Comparison of Annealing Techniques for Academic Course Scheduling

A Comparison of Annealing Techniques for Academic Course Scheduling A Comparison of Annealing Techniques for Academic Course Scheduling M. A. Saleh Elmohamed 1, Paul Coddington 2, and Geoffrey Fox 1 1 Northeast Parallel Architectures Center Syracuse University, Syracuse,

More information

arxiv: v1 [math.at] 10 Jan 2016

arxiv: v1 [math.at] 10 Jan 2016 THE ALGEBRAIC ATIYAH-HIRZEBRUCH SPECTRAL SEQUENCE OF REAL PROJECTIVE SPECTRA arxiv:1601.02185v1 [math.at] 10 Jan 2016 GUOZHEN WANG AND ZHOULI XU Abstract. In this note, we use Curtis s algorithm and the

More information

Specification and Evaluation of Machine Translation Toy Systems - Criteria for laboratory assignments

Specification and Evaluation of Machine Translation Toy Systems - Criteria for laboratory assignments Specification and Evaluation of Machine Translation Toy Systems - Criteria for laboratory assignments Cristina Vertan, Walther v. Hahn University of Hamburg, Natural Language Systems Division Hamburg,

More information

Using focal point learning to improve human machine tacit coordination

Using focal point learning to improve human machine tacit coordination DOI 10.1007/s10458-010-9126-5 Using focal point learning to improve human machine tacit coordination InonZuckerman SaritKraus Jeffrey S. Rosenschein The Author(s) 2010 Abstract We consider an automated

More information

Analysis of Hybrid Soft and Hard Computing Techniques for Forex Monitoring Systems

Analysis of Hybrid Soft and Hard Computing Techniques for Forex Monitoring Systems Analysis of Hybrid Soft and Hard Computing Techniques for Forex Monitoring Systems Ajith Abraham School of Business Systems, Monash University, Clayton, Victoria 3800, Australia. Email: ajith.abraham@ieee.org

More information

Neuroscience I. BIOS/PHIL/PSCH 484 MWF 1:00-1:50 Lecture Center F6. Fall credit hours

Neuroscience I. BIOS/PHIL/PSCH 484 MWF 1:00-1:50 Lecture Center F6. Fall credit hours INSTRUCTOR INFORMATION Dr. John Leonard (course coordinator) Neuroscience I BIOS/PHIL/PSCH 484 MWF 1:00-1:50 Lecture Center F6 Fall 2016 3 credit hours leonard@uic.edu Biological Sciences 3055 SEL 312-996-4261

More information

Machine Learning from Garden Path Sentences: The Application of Computational Linguistics

Machine Learning from Garden Path Sentences: The Application of Computational Linguistics Machine Learning from Garden Path Sentences: The Application of Computational Linguistics http://dx.doi.org/10.3991/ijet.v9i6.4109 J.L. Du 1, P.F. Yu 1 and M.L. Li 2 1 Guangdong University of Foreign Studies,

More information