SlideShare ist ein Scribd-Unternehmen logo
1 von 17
Downloaden Sie, um offline zu lesen
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Reservoir Computing with Emphasis on Liquid
State Machines
Alex Klibisz
University of Tennessee
aklibisz@gmail.com
November 28, 2016
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Context and Motivation
• Traditional ANNs are useful for non-linear problems, but
struggle with temporal problems.
• Recurrent Neural Networks show promise for temporal
problems, but the models are very complex and dicult,
expensive to train.
• Reservoir computing provides a model of neural
network/microcircuit for solving temporal problems with much
simpler training.
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Articial Neural Networks
1
• Useful for learning non-linear
f (xi ) = yi .
• Input layers takes vectorized input.
• Hidden layers transform the input.
• Output layer indicates something
meaningful (e.g. binary class,
distribution over classes).
• Trained by feeding in many
examples to minimize some
objective function.
1
source: wikimedia
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Feed-forward Neural Networks
• Information passed in one direction from input to output.
• Each neuron has a weight w for each of its inputs and a single
bias b.
• Weights, bias, input used to compute the output:
output = 1
1+exp(− j wj xj −b).
• Outputs evaluated by objective function (e.g. classification
accuracy).
• Backpropagation algorithm adjusts w and b to minimize the
objective function.
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Recurrent Neural Networks
2
Figure: The network state and resulting output change with time.
• Some data have temporal dependencies across inputs (e.g.
time series, video, text, speech, movement).
• FFNN assume inputs are independent and fail to capture this.
• Recurrent neural nets capture temporal dependencies by:
1. Allowing cyclic connections in the hidden layer.
2. Preserving internal state between inputs.
• Training is expensive; backpropagation-through-time is used
to unroll all cycles and adjust neuron parameters.
2
http://colah.github.io/posts/2015-08-Understanding-LSTMs/
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Continuous Activation vs. Spiking Neurons
How does a neuron produce its output?
• Continuous activation neurons
1. Compute an activation function using inputs, weights, bias.
2. Pass the result to all connected neurons.
• Spiking neurons
1. Accumulate and store inputs.
2. Only pass the results if a threshold is exceeded.
• Advantages
• Proven that spiking neurons can compute any function
computed by sigmoidal neurons with fewer neurons (Maass,
1997).
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Conceptual Introduction
Figure: Reservoir Computing: construct a reservoir of random recurrent
neurons and train a single readout layer.
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
History
Random networks with a trained readout layer
• Frank Rosenblatt, 1962; Geoffrey Hinton, 1981; Buonamano,
Merzenich, 1995
Echo-State Networks
• Herbert Jaeger, 2001
Liquid State Machines
• Wolfgang Maass, 2002
Backpropagation Decorrelation3
• Jochen Steil, 2004
Unifying as Reservoir Computing
• Verstraeten, 2007
3
Applying concepts from RC to train RNNs
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Successful Applications
Broad Topics
• Robotics controls, object tracking, motion prediction, event
detection, pattern classication, signal processing, noise
modeling, time series prediction
Specic Examples
• Venayagamoorthy, 2007 used an ESN as a wide-area power
system controller with on-line learning.
• Jaeger, 2004 improved noisy time series prediction accuracy
2400x over previous techniques.
• Salehi, 2016 simulated a nanophotonic reservoir computing
system with 100% speech recognition on TIDIGITS dataset.
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Liquid State Machines vs. Echo State Networks
Primary difference: neuron implementation
• ESN: neurons do not hold charge, state is maintained using
recurrent loops.
• LSM: neurons can hold charge and maintain internal state.
• LSM formulation is general enough to encompass ESNs.
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
LSM Formal Denition
4 5
• A filter maps between two functions of time u(·) → y(·).
• A Liquid State Machine M defined M = LM, f M .
• Filter LM
and readout function f M
.
• State at time t defined xM(t) = (LMu)(t).
• Read: filter LM
applied to input function u(¡) at time t
• Output at time t defined y(t) = (Mu)(t) = f M(xM(t))
• Read: the readout function f applied to the current state xM
(t)
4
Maass, 2002
5
Joshi, Maass 2004
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
LSM Requirements Th. 3.1 Maass 2004
Filters in LM
satisfy the point-wise separation property
Class CB of lters has the PWSP with regard to input functions from Un
if for any two functions u(¡), v(¡) ∈ Un
with u(s) = v(s) for some s ≤ 0,
there exists some lter B ∈ CB such that (Bu)(0) = (Bv)(0).
Intuition: there exists a lter that can distinguish two input functions from one
another at the same time step.
Readout f M
satises the universal approximation property
Class CF of functions has the UAP if for any m ∈ N, any set X ⊆ Rm
,
any continuous function h : X → R, and any given ρ > 0, there exists
some f in CF such that |h(x) − f (x)| ≤ ρ for all x ∈ X.
Intuition: any continuous function on a compact domain can be uniformly
approximated by functions from CF.
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Examples of Filters and Readout Functions
Filters Satisfying Pointwise Separation Property
• Linear filters with impulse responses h(t) = e−at, a > 0
• All delay filters u(·) → ut0 (·)
• Leaky Integrate and Fire neurons
• Threshold logic gates
Readout functions satisfying Universal Approximation Property
• Simple linear regression
• Simple perceptrons
• Support vector machines
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Building, Training LSMs
In General
• Take inspiration from known characteristics of the brain.
• Perform search/optimization to find a configuration.
Example: Simulated Robotic Arm Movement (Joshi, Maass 2004)
• Inputs: x,y target, 2 angles, 2 prior torque magnitudes.
• Output: 2 torque magnitudes to move the arm.
• 600 neurons in a 20 x 5 x 6 grid.
• Connections chosen from distribution favoring local
conections.
• Neuron and connection parameters (e.g. firing threshold)
chosen based on knowledge of rat brains.
• Readout trained to deliver torque values using linear
regression.
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Figure: Reservoir architecture and control loop from Joshi, Maass 2004
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Research Trends
1. Hardware implemenations: laser optics and other novel
hardware to implement the reservoir.
2. Optimizing reservoirs: analytical insight and techniques to
optimize a reservoirs for specic task. (Current standard is
intuition and manual search.)
3. Interconnecting modular reservoirs for more complex tasks.
Background Reservoir Computing Liquid State Machines Current and Future Research Summary
Summary
• Randomly initialized reservoir and a simple trained readout
mapping.
• Neurons in the reservoir and the readout map should satisfy
two properties for universal computation.
• Particularly useful for tasks with temporal data/signal.
• More work to be done for optimizing and hardware
implementation.

Weitere ähnliche Inhalte

Was ist angesagt?

PhD Defense
PhD DefensePhD Defense
PhD DefenseTaehoon Lee
 
Neuromorphic computing for neural networks
Neuromorphic computing for neural networksNeuromorphic computing for neural networks
Neuromorphic computing for neural networksClaudio Gallicchio
 
DFTFIT: Potential Generation for Molecular Dynamics Calculations
DFTFIT: Potential Generation for Molecular Dynamics CalculationsDFTFIT: Potential Generation for Molecular Dynamics Calculations
DFTFIT: Potential Generation for Molecular Dynamics CalculationsChristopher Ostrouchov
 
Non-linear optics by means of dynamical Berry phase
Non-linear optics  by means of  dynamical Berry phaseNon-linear optics  by means of  dynamical Berry phase
Non-linear optics by means of dynamical Berry phaseClaudio Attaccalite
 
Semiconductor ch.3 part i, Introduction to the Quantum Theory of Solids
Semiconductor ch.3 part i, Introduction to the Quantum Theory of SolidsSemiconductor ch.3 part i, Introduction to the Quantum Theory of Solids
Semiconductor ch.3 part i, Introduction to the Quantum Theory of SolidsMazin A. Al-alousi
 
Silicon on Insulator (SOI) Technology
Silicon on Insulator (SOI) TechnologySilicon on Insulator (SOI) Technology
Silicon on Insulator (SOI) TechnologySudhanshu Janwadkar
 
Quantum Entanglement - Cryptography and Communication
Quantum Entanglement - Cryptography and CommunicationQuantum Entanglement - Cryptography and Communication
Quantum Entanglement - Cryptography and CommunicationYi-Hsueh Tsai
 
Deep Learning for Data Scientists - Data Science ATL Meetup Presentation, 201...
Deep Learning for Data Scientists - Data Science ATL Meetup Presentation, 201...Deep Learning for Data Scientists - Data Science ATL Meetup Presentation, 201...
Deep Learning for Data Scientists - Data Science ATL Meetup Presentation, 201...Andrew Gardner
 
[DL輪読会]An Iterative Framework for Self-supervised Deep Speaker Representatio...
[DL輪読会]An Iterative Framework for Self-supervised Deep  Speaker Representatio...[DL輪読会]An Iterative Framework for Self-supervised Deep  Speaker Representatio...
[DL輪読会]An Iterative Framework for Self-supervised Deep Speaker Representatio...Deep Learning JP
 
[DL輪読会]Wavenet a generative model for raw audio
[DL輪読会]Wavenet a generative model for raw audio[DL輪読会]Wavenet a generative model for raw audio
[DL輪読会]Wavenet a generative model for raw audioDeep Learning JP
 
Computational materials design with high-throughput and machine learning methods
Computational materials design with high-throughput and machine learning methodsComputational materials design with high-throughput and machine learning methods
Computational materials design with high-throughput and machine learning methodsAnubhav Jain
 
Adaptive Learning and Mining for Data Streams and Frequent Patterns
Adaptive Learning and Mining for Data Streams and Frequent PatternsAdaptive Learning and Mining for Data Streams and Frequent Patterns
Adaptive Learning and Mining for Data Streams and Frequent PatternsAlbert Bifet
 
HARRISON’S METHOD
HARRISON’S METHODHARRISON’S METHOD
HARRISON’S METHODSyedHammadAli21
 
Super lattice and quantum well
Super lattice and quantum wellSuper lattice and quantum well
Super lattice and quantum wellMUHAMMAD AADIL
 
Graphs, Environments, and Machine Learning for Materials Science
Graphs, Environments, and Machine Learning for Materials ScienceGraphs, Environments, and Machine Learning for Materials Science
Graphs, Environments, and Machine Learning for Materials Scienceaimsnist
 
non linear optics
non linear opticsnon linear optics
non linear opticsSandeep K Nair
 

Was ist angesagt? (20)

PhD Defense
PhD DefensePhD Defense
PhD Defense
 
Neuromorphic computing for neural networks
Neuromorphic computing for neural networksNeuromorphic computing for neural networks
Neuromorphic computing for neural networks
 
DFTFIT: Potential Generation for Molecular Dynamics Calculations
DFTFIT: Potential Generation for Molecular Dynamics CalculationsDFTFIT: Potential Generation for Molecular Dynamics Calculations
DFTFIT: Potential Generation for Molecular Dynamics Calculations
 
Non-linear optics by means of dynamical Berry phase
Non-linear optics  by means of  dynamical Berry phaseNon-linear optics  by means of  dynamical Berry phase
Non-linear optics by means of dynamical Berry phase
 
Semiconductor ch.3 part i, Introduction to the Quantum Theory of Solids
Semiconductor ch.3 part i, Introduction to the Quantum Theory of SolidsSemiconductor ch.3 part i, Introduction to the Quantum Theory of Solids
Semiconductor ch.3 part i, Introduction to the Quantum Theory of Solids
 
Piezo electric Property
Piezo electric PropertyPiezo electric Property
Piezo electric Property
 
Silicon on Insulator (SOI) Technology
Silicon on Insulator (SOI) TechnologySilicon on Insulator (SOI) Technology
Silicon on Insulator (SOI) Technology
 
Quantum Entanglement - Cryptography and Communication
Quantum Entanglement - Cryptography and CommunicationQuantum Entanglement - Cryptography and Communication
Quantum Entanglement - Cryptography and Communication
 
Deep Learning for Data Scientists - Data Science ATL Meetup Presentation, 201...
Deep Learning for Data Scientists - Data Science ATL Meetup Presentation, 201...Deep Learning for Data Scientists - Data Science ATL Meetup Presentation, 201...
Deep Learning for Data Scientists - Data Science ATL Meetup Presentation, 201...
 
計算材料学
計算材料学計算材料学
計算材料学
 
[DL輪読会]An Iterative Framework for Self-supervised Deep Speaker Representatio...
[DL輪読会]An Iterative Framework for Self-supervised Deep  Speaker Representatio...[DL輪読会]An Iterative Framework for Self-supervised Deep  Speaker Representatio...
[DL輪読会]An Iterative Framework for Self-supervised Deep Speaker Representatio...
 
Quantum Sensor .pptx.pdf
Quantum Sensor .pptx.pdfQuantum Sensor .pptx.pdf
Quantum Sensor .pptx.pdf
 
Fullprof Refinement
Fullprof RefinementFullprof Refinement
Fullprof Refinement
 
[DL輪読会]Wavenet a generative model for raw audio
[DL輪読会]Wavenet a generative model for raw audio[DL輪読会]Wavenet a generative model for raw audio
[DL輪読会]Wavenet a generative model for raw audio
 
Computational materials design with high-throughput and machine learning methods
Computational materials design with high-throughput and machine learning methodsComputational materials design with high-throughput and machine learning methods
Computational materials design with high-throughput and machine learning methods
 
Adaptive Learning and Mining for Data Streams and Frequent Patterns
Adaptive Learning and Mining for Data Streams and Frequent PatternsAdaptive Learning and Mining for Data Streams and Frequent Patterns
Adaptive Learning and Mining for Data Streams and Frequent Patterns
 
HARRISON’S METHOD
HARRISON’S METHODHARRISON’S METHOD
HARRISON’S METHOD
 
Super lattice and quantum well
Super lattice and quantum wellSuper lattice and quantum well
Super lattice and quantum well
 
Graphs, Environments, and Machine Learning for Materials Science
Graphs, Environments, and Machine Learning for Materials ScienceGraphs, Environments, and Machine Learning for Materials Science
Graphs, Environments, and Machine Learning for Materials Science
 
non linear optics
non linear opticsnon linear optics
non linear optics
 

Ähnlich wie Reservoir Computing Overview (with emphasis on Liquid State Machines)

RNN and LSTM model description and working advantages and disadvantages
RNN and LSTM model description and working advantages and disadvantagesRNN and LSTM model description and working advantages and disadvantages
RNN and LSTM model description and working advantages and disadvantagesAbhijitVenkatesh1
 
recurrent_neural_networks_april_2020.pptx
recurrent_neural_networks_april_2020.pptxrecurrent_neural_networks_april_2020.pptx
recurrent_neural_networks_april_2020.pptxSagarTekwani4
 
Module 1 sp
Module 1 spModule 1 sp
Module 1 spVijaya79
 
14 Machine Learning Single Layer Perceptron
14 Machine Learning Single Layer Perceptron14 Machine Learning Single Layer Perceptron
14 Machine Learning Single Layer PerceptronAndres Mendez-Vazquez
 
[Paper Reading] Attention is All You Need
[Paper Reading] Attention is All You Need[Paper Reading] Attention is All You Need
[Paper Reading] Attention is All You NeedDaiki Tanaka
 
Tsinghua invited talk_zhou_xing_v2r0
Tsinghua invited talk_zhou_xing_v2r0Tsinghua invited talk_zhou_xing_v2r0
Tsinghua invited talk_zhou_xing_v2r0Joe Xing
 
Parallel Left Ventricle Simulation Using the FEniCS Framework
Parallel Left Ventricle Simulation Using the FEniCS FrameworkParallel Left Ventricle Simulation Using the FEniCS Framework
Parallel Left Ventricle Simulation Using the FEniCS FrameworkUral-PDC
 
Adaptive equalization
Adaptive equalizationAdaptive equalization
Adaptive equalizationKamal Bhatt
 
Lecture 4 neural networks
Lecture 4 neural networksLecture 4 neural networks
Lecture 4 neural networksParveenMalik18
 
Feed forward back propogation algorithm .pptx
Feed forward back propogation algorithm .pptxFeed forward back propogation algorithm .pptx
Feed forward back propogation algorithm .pptxneelamsanjeevkumar
 
Artificial Intelligence, Machine Learning and Deep Learning
Artificial Intelligence, Machine Learning and Deep LearningArtificial Intelligence, Machine Learning and Deep Learning
Artificial Intelligence, Machine Learning and Deep LearningSujit Pal
 
Unified Framework for Learning Representation from EEG Data
Unified Framework for Learning Representation from EEG DataUnified Framework for Learning Representation from EEG Data
Unified Framework for Learning Representation from EEG DataFedEx Institute of Technology
 
artificial-neural-networks-rev.ppt
artificial-neural-networks-rev.pptartificial-neural-networks-rev.ppt
artificial-neural-networks-rev.pptRINUSATHYAN
 
artificial-neural-networks-rev.ppt
artificial-neural-networks-rev.pptartificial-neural-networks-rev.ppt
artificial-neural-networks-rev.pptSanaMateen7
 
Lecture artificial neural networks and pattern recognition
Lecture   artificial neural networks and pattern recognitionLecture   artificial neural networks and pattern recognition
Lecture artificial neural networks and pattern recognitionHưng Đạng
 
Lecture artificial neural networks and pattern recognition
Lecture   artificial neural networks and pattern recognitionLecture   artificial neural networks and pattern recognition
Lecture artificial neural networks and pattern recognitionHưng Đạng
 
Trajectory Transformer.pptx
Trajectory Transformer.pptxTrajectory Transformer.pptx
Trajectory Transformer.pptxSeungeon Baek
 
Neural machine translation by jointly learning to align and translate.pptx
Neural machine translation by jointly learning to align and translate.pptxNeural machine translation by jointly learning to align and translate.pptx
Neural machine translation by jointly learning to align and translate.pptxssuser2624f71
 
On Learning Navigation Behaviors for Small Mobile Robots With Reservoir Compu...
On Learning Navigation Behaviors for Small Mobile Robots With Reservoir Compu...On Learning Navigation Behaviors for Small Mobile Robots With Reservoir Compu...
On Learning Navigation Behaviors for Small Mobile Robots With Reservoir Compu...gabrielesisinna
 

Ähnlich wie Reservoir Computing Overview (with emphasis on Liquid State Machines) (20)

RNN and LSTM model description and working advantages and disadvantages
RNN and LSTM model description and working advantages and disadvantagesRNN and LSTM model description and working advantages and disadvantages
RNN and LSTM model description and working advantages and disadvantages
 
recurrent_neural_networks_april_2020.pptx
recurrent_neural_networks_april_2020.pptxrecurrent_neural_networks_april_2020.pptx
recurrent_neural_networks_april_2020.pptx
 
Module 1 sp
Module 1 spModule 1 sp
Module 1 sp
 
14 Machine Learning Single Layer Perceptron
14 Machine Learning Single Layer Perceptron14 Machine Learning Single Layer Perceptron
14 Machine Learning Single Layer Perceptron
 
[Paper Reading] Attention is All You Need
[Paper Reading] Attention is All You Need[Paper Reading] Attention is All You Need
[Paper Reading] Attention is All You Need
 
Tsinghua invited talk_zhou_xing_v2r0
Tsinghua invited talk_zhou_xing_v2r0Tsinghua invited talk_zhou_xing_v2r0
Tsinghua invited talk_zhou_xing_v2r0
 
Parallel Left Ventricle Simulation Using the FEniCS Framework
Parallel Left Ventricle Simulation Using the FEniCS FrameworkParallel Left Ventricle Simulation Using the FEniCS Framework
Parallel Left Ventricle Simulation Using the FEniCS Framework
 
Adaptive equalization
Adaptive equalizationAdaptive equalization
Adaptive equalization
 
Lecture 4 neural networks
Lecture 4 neural networksLecture 4 neural networks
Lecture 4 neural networks
 
Feed forward back propogation algorithm .pptx
Feed forward back propogation algorithm .pptxFeed forward back propogation algorithm .pptx
Feed forward back propogation algorithm .pptx
 
Artificial Intelligence, Machine Learning and Deep Learning
Artificial Intelligence, Machine Learning and Deep LearningArtificial Intelligence, Machine Learning and Deep Learning
Artificial Intelligence, Machine Learning and Deep Learning
 
Yeasin
YeasinYeasin
Yeasin
 
Unified Framework for Learning Representation from EEG Data
Unified Framework for Learning Representation from EEG DataUnified Framework for Learning Representation from EEG Data
Unified Framework for Learning Representation from EEG Data
 
artificial-neural-networks-rev.ppt
artificial-neural-networks-rev.pptartificial-neural-networks-rev.ppt
artificial-neural-networks-rev.ppt
 
artificial-neural-networks-rev.ppt
artificial-neural-networks-rev.pptartificial-neural-networks-rev.ppt
artificial-neural-networks-rev.ppt
 
Lecture artificial neural networks and pattern recognition
Lecture   artificial neural networks and pattern recognitionLecture   artificial neural networks and pattern recognition
Lecture artificial neural networks and pattern recognition
 
Lecture artificial neural networks and pattern recognition
Lecture   artificial neural networks and pattern recognitionLecture   artificial neural networks and pattern recognition
Lecture artificial neural networks and pattern recognition
 
Trajectory Transformer.pptx
Trajectory Transformer.pptxTrajectory Transformer.pptx
Trajectory Transformer.pptx
 
Neural machine translation by jointly learning to align and translate.pptx
Neural machine translation by jointly learning to align and translate.pptxNeural machine translation by jointly learning to align and translate.pptx
Neural machine translation by jointly learning to align and translate.pptx
 
On Learning Navigation Behaviors for Small Mobile Robots With Reservoir Compu...
On Learning Navigation Behaviors for Small Mobile Robots With Reservoir Compu...On Learning Navigation Behaviors for Small Mobile Robots With Reservoir Compu...
On Learning Navigation Behaviors for Small Mobile Robots With Reservoir Compu...
 

Mehr von Alex Klibisz

Research Summary: Scalable Algorithms for Nearest-Neighbor Joins on Big Traje...
Research Summary: Scalable Algorithms for Nearest-Neighbor Joins on Big Traje...Research Summary: Scalable Algorithms for Nearest-Neighbor Joins on Big Traje...
Research Summary: Scalable Algorithms for Nearest-Neighbor Joins on Big Traje...Alex Klibisz
 
Research Summary: Efficiently Estimating Statistics of Points of Interest on ...
Research Summary: Efficiently Estimating Statistics of Points of Interest on ...Research Summary: Efficiently Estimating Statistics of Points of Interest on ...
Research Summary: Efficiently Estimating Statistics of Points of Interest on ...Alex Klibisz
 
Exploring Serverless Architectures: AWS Lambda
Exploring Serverless Architectures: AWS LambdaExploring Serverless Architectures: AWS Lambda
Exploring Serverless Architectures: AWS LambdaAlex Klibisz
 
React, Flux, and Realtime RSVPs
React, Flux, and Realtime RSVPsReact, Flux, and Realtime RSVPs
React, Flux, and Realtime RSVPsAlex Klibisz
 
Research Summary: Hidden Topic Markov Models, Gruber
Research Summary: Hidden Topic Markov Models, GruberResearch Summary: Hidden Topic Markov Models, Gruber
Research Summary: Hidden Topic Markov Models, GruberAlex Klibisz
 
Research Summary: Unsupervised Prediction of Citation Influences, Dietz
Research Summary: Unsupervised Prediction of Citation Influences, DietzResearch Summary: Unsupervised Prediction of Citation Influences, Dietz
Research Summary: Unsupervised Prediction of Citation Influences, DietzAlex Klibisz
 

Mehr von Alex Klibisz (6)

Research Summary: Scalable Algorithms for Nearest-Neighbor Joins on Big Traje...
Research Summary: Scalable Algorithms for Nearest-Neighbor Joins on Big Traje...Research Summary: Scalable Algorithms for Nearest-Neighbor Joins on Big Traje...
Research Summary: Scalable Algorithms for Nearest-Neighbor Joins on Big Traje...
 
Research Summary: Efficiently Estimating Statistics of Points of Interest on ...
Research Summary: Efficiently Estimating Statistics of Points of Interest on ...Research Summary: Efficiently Estimating Statistics of Points of Interest on ...
Research Summary: Efficiently Estimating Statistics of Points of Interest on ...
 
Exploring Serverless Architectures: AWS Lambda
Exploring Serverless Architectures: AWS LambdaExploring Serverless Architectures: AWS Lambda
Exploring Serverless Architectures: AWS Lambda
 
React, Flux, and Realtime RSVPs
React, Flux, and Realtime RSVPsReact, Flux, and Realtime RSVPs
React, Flux, and Realtime RSVPs
 
Research Summary: Hidden Topic Markov Models, Gruber
Research Summary: Hidden Topic Markov Models, GruberResearch Summary: Hidden Topic Markov Models, Gruber
Research Summary: Hidden Topic Markov Models, Gruber
 
Research Summary: Unsupervised Prediction of Citation Influences, Dietz
Research Summary: Unsupervised Prediction of Citation Influences, DietzResearch Summary: Unsupervised Prediction of Citation Influences, Dietz
Research Summary: Unsupervised Prediction of Citation Influences, Dietz
 

KĂźrzlich hochgeladen

Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vĂĄzquez
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 

KĂźrzlich hochgeladen (20)

+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 

Reservoir Computing Overview (with emphasis on Liquid State Machines)

  • 1. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Reservoir Computing with Emphasis on Liquid State Machines Alex Klibisz University of Tennessee aklibisz@gmail.com November 28, 2016
  • 2. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Context and Motivation • Traditional ANNs are useful for non-linear problems, but struggle with temporal problems. • Recurrent Neural Networks show promise for temporal problems, but the models are very complex and dicult, expensive to train. • Reservoir computing provides a model of neural network/microcircuit for solving temporal problems with much simpler training.
  • 3. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Articial Neural Networks 1 • Useful for learning non-linear f (xi ) = yi . • Input layers takes vectorized input. • Hidden layers transform the input. • Output layer indicates something meaningful (e.g. binary class, distribution over classes). • Trained by feeding in many examples to minimize some objective function. 1 source: wikimedia
  • 4. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Feed-forward Neural Networks • Information passed in one direction from input to output. • Each neuron has a weight w for each of its inputs and a single bias b. • Weights, bias, input used to compute the output: output = 1 1+exp(− j wj xj −b). • Outputs evaluated by objective function (e.g. classication accuracy). • Backpropagation algorithm adjusts w and b to minimize the objective function.
  • 5. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Recurrent Neural Networks 2 Figure: The network state and resulting output change with time. • Some data have temporal dependencies across inputs (e.g. time series, video, text, speech, movement). • FFNN assume inputs are independent and fail to capture this. • Recurrent neural nets capture temporal dependencies by: 1. Allowing cyclic connections in the hidden layer. 2. Preserving internal state between inputs. • Training is expensive; backpropagation-through-time is used to unroll all cycles and adjust neuron parameters. 2 http://colah.github.io/posts/2015-08-Understanding-LSTMs/
  • 6. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Continuous Activation vs. Spiking Neurons How does a neuron produce its output? • Continuous activation neurons 1. Compute an activation function using inputs, weights, bias. 2. Pass the result to all connected neurons. • Spiking neurons 1. Accumulate and store inputs. 2. Only pass the results if a threshold is exceeded. • Advantages • Proven that spiking neurons can compute any function computed by sigmoidal neurons with fewer neurons (Maass, 1997).
  • 7. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Conceptual Introduction Figure: Reservoir Computing: construct a reservoir of random recurrent neurons and train a single readout layer.
  • 8. Background Reservoir Computing Liquid State Machines Current and Future Research Summary History Random networks with a trained readout layer • Frank Rosenblatt, 1962; Geoffrey Hinton, 1981; Buonamano, Merzenich, 1995 Echo-State Networks • Herbert Jaeger, 2001 Liquid State Machines • Wolfgang Maass, 2002 Backpropagation Decorrelation3 • Jochen Steil, 2004 Unifying as Reservoir Computing • Verstraeten, 2007 3 Applying concepts from RC to train RNNs
  • 9. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Successful Applications Broad Topics • Robotics controls, object tracking, motion prediction, event detection, pattern classication, signal processing, noise modeling, time series prediction Specic Examples • Venayagamoorthy, 2007 used an ESN as a wide-area power system controller with on-line learning. • Jaeger, 2004 improved noisy time series prediction accuracy 2400x over previous techniques. • Salehi, 2016 simulated a nanophotonic reservoir computing system with 100% speech recognition on TIDIGITS dataset.
  • 10. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Liquid State Machines vs. Echo State Networks Primary difference: neuron implementation • ESN: neurons do not hold charge, state is maintained using recurrent loops. • LSM: neurons can hold charge and maintain internal state. • LSM formulation is general enough to encompass ESNs.
  • 11. Background Reservoir Computing Liquid State Machines Current and Future Research Summary LSM Formal Denition 4 5 • A lter maps between two functions of time u(¡) → y(¡). • A Liquid State Machine M dened M = LM, f M . • Filter LM and readout function f M . • State at time t dened xM(t) = (LMu)(t). • Read: lter LM applied to input function u(¡) at time t • Output at time t dened y(t) = (Mu)(t) = f M(xM(t)) • Read: the readout function f applied to the current state xM (t) 4 Maass, 2002 5 Joshi, Maass 2004
  • 12. Background Reservoir Computing Liquid State Machines Current and Future Research Summary LSM Requirements Th. 3.1 Maass 2004 Filters in LM satisfy the point-wise separation property Class CB of lters has the PWSP with regard to input functions from Un if for any two functions u(¡), v(¡) ∈ Un with u(s) = v(s) for some s ≤ 0, there exists some lter B ∈ CB such that (Bu)(0) = (Bv)(0). Intuition: there exists a lter that can distinguish two input functions from one another at the same time step. Readout f M satises the universal approximation property Class CF of functions has the UAP if for any m ∈ N, any set X ⊆ Rm , any continuous function h : X → R, and any given ρ > 0, there exists some f in CF such that |h(x) − f (x)| ≤ ρ for all x ∈ X. Intuition: any continuous function on a compact domain can be uniformly approximated by functions from CF.
  • 13. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Examples of Filters and Readout Functions Filters Satisfying Pointwise Separation Property • Linear lters with impulse responses h(t) = e−at, a > 0 • All delay lters u(¡) → ut0 (¡) • Leaky Integrate and Fire neurons • Threshold logic gates Readout functions satisfying Universal Approximation Property • Simple linear regression • Simple perceptrons • Support vector machines
  • 14. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Building, Training LSMs In General • Take inspiration from known characteristics of the brain. • Perform search/optimization to nd a conguration. Example: Simulated Robotic Arm Movement (Joshi, Maass 2004) • Inputs: x,y target, 2 angles, 2 prior torque magnitudes. • Output: 2 torque magnitudes to move the arm. • 600 neurons in a 20 x 5 x 6 grid. • Connections chosen from distribution favoring local conections. • Neuron and connection parameters (e.g. ring threshold) chosen based on knowledge of rat brains. • Readout trained to deliver torque values using linear regression.
  • 15. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Figure: Reservoir architecture and control loop from Joshi, Maass 2004
  • 16. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Research Trends 1. Hardware implemenations: laser optics and other novel hardware to implement the reservoir. 2. Optimizing reservoirs: analytical insight and techniques to optimize a reservoirs for specic task. (Current standard is intuition and manual search.) 3. Interconnecting modular reservoirs for more complex tasks.
  • 17. Background Reservoir Computing Liquid State Machines Current and Future Research Summary Summary • Randomly initialized reservoir and a simple trained readout mapping. • Neurons in the reservoir and the readout map should satisfy two properties for universal computation. • Particularly useful for tasks with temporal data/signal. • More work to be done for optimizing and hardware implementation.