Presentation is loading. Please wait.

Presentation is loading. Please wait.

EE141 1 Self-organization and error correction Janusz A. Starzyk

Similar presentations


Presentation on theme: "EE141 1 Self-organization and error correction Janusz A. Starzyk"— Presentation transcript:

1 EE141 1 Self-organization and error correction Janusz A. Starzyk http://grey.colorado.edu/CompCogNeuro/index.php/CECN_CU_Boulder_OReilly http://grey.colorado.edu/CompCogNeuro/index.php/Main_Page Based on a courses taught by Prof. Randall O'Reilly, University of Colorado,Randall O'Reilly Prof. Włodzisław Duch, Uniwersytet Mikołaja Kopernika and http://wikipedia.org/ Cognitive Neuroscience and Embodied Intelligence

2 EE141 2 Learning: types 1. How should an ideal learning system look? 2. How does a human being learn? Detectors (neurons) can change local parameters but we want to achieve a change in the functioning of the entire information processing network. We will consider two types of learning, requiring other mechanisms:  Learning an internal model of the environment (spontaneous).  Learning a task set by the network (supervised).  Combination of both.

3 EE141 3 Learning operations One output neuron can't learn much. Operation = sensomotor transformation, perception-action. Stimulation and selection of the correct operation, interpretation, expectations, plan… What type of learning does this allow us to explain? What types of learning require additional mechanisms?

4 EE141 4 Simulation Select self_org.proj.gz, in Chapter 4.8.1 25 inputs 20 hidden neurons, kWTA; The network will learn interesting features.

5 EE141 5 Chose Self_org.proj from Ch4. 5x5 input has either a single horizontal or vertical line (10 samples) or a combination of 2 lines (45 samples). Learning is possible only for individual lines. Miracle: Hebbian lerning + kWTA is sufficient for the network to make correct internal representations. Simulation

6 EE141 6 4x5 = 20 hidden neurons, kWTA. After training (30 epochs presenting all line pairs), selective units responding to single lines appear, (2 units for 2 lines) giving a combinatorial representation! Initially responses to inputs are random but winners quickly appear. Some units (5) remain inactive and they can be used to learn new inputs. Self-organization, but no topological representation, since neighbors respond to different features. 10 unique representations for single line inputs – all correct. Simulation

7 EE141 7 Sensomotor maps Self-organization is modeled in many ways; simple models are helpful in explaining qualitative features of topographic maps. Fig. from: P.S. Churchland, T.J. Sejnowski, The computational brain. MIT Press, 1992

8 EE141 8 Motor and somatosensory maps This is a very simplified image, in reality most neurons are multimodal, neurons in the motor cortex react to sensory, aural, and visual impulses (mirror neurons) - many specialized circuits of perception-action-naming.

9 EE141 9 Finger representation: plasticity Hand Face Before After stimulation stimulation Sensory fields in the cortex expand after stimulation – local dominances resulting from activation Plasticity of cortical areas to sensory-motor representations

10 EE141 10 Simplest models SOM or SOFM (Self-Organized Feature Mapping) – self-organizing feature map, one of the most popular models. How can topographical maps be created in the brain? Local neural connections create strong groups interacting with each other, weaker across greater distances and inhibiting nearby groups. History: von der Malsburg and Willshaw (1976), competitive learning, Hebbian learning with "Mexican hat" potential, mainly visual system Amari (1980) – layered models of neural tissue. Kohonen (1981) – simplification without inhibition; only two essential variables: competition and cooperation.

11 EE141 11 SOM: idea Data: vectors X T = (X 1,... X d ) from d-dimensional space. A net of nodes with local processors (neurons) in each node. Local processor # j has d adaptive parameters W (j). Goal: adjust the W (j) parameters to model the clusters in p-ni X.

12 EE141 12 Training SOM Fritzke's algorithm Growing Neural Gas (GNG) Demonstrations of competitive GNG learning in Java: http://www.neuroinformatik.ruhr-uni-bochum.de/ini/VDM/research/gsn/DemoGNG/GNG.html

13 EE141 13 SOM algorithm: competition Nodes should calculate the similarity of input data to their parameters. Input vector X is compared to node parameters W. Similar = minimal distance or maximal scalar product. Competition: find node j=c with W most similar to X. Node number c is most similar to the input vector X It is a winner, and it will learn to be more similar to X, hence this is a “competitive learning” procedure. Brain: those neurons that react to some signals activate and learn.

14 EE141 14 SOM algorithm: cooperation Cooperation: nodes on a grid close to the winner c should behave similarly. Define the “neighborhood function” O(c): t – iteration number (or time); r c – position of the winning node c (in physical space, usually 2D). ||r-r c || – distance from the winning node, scaled by  c ( t ). h 0 (t) – slowly decreasing multiplicative factor The neighborhood function determines how strongly the parameters of the winning node and nodes in its neighborhood will be changed, making them more similar to data X

15 EE141 15 SOM algorithm: dynamics Adaptation rule: take the winner node c, and those in its neighborhood O(rc), change their parameters making them more similar to the data X Randomly select new sample vector X, and repeat. Decrease h0(t) slowly until there will be no changes. Result:  W(i) ≈ the center of local clusters in the X feature space  Nodes in the neighborhood point to adjacent areas in X space

16 EE141 16 Maps and distortions Initial distortions may slowly disappear or may get frozen... giving the user a completely distorted view of reality.

17 EE141 17 Demonstrations with the help of GNG Growing Self-Organizing Networks demo Growing Self-Organizing Networks demo Growing Self-Organizing Networks demo Growing Self-Organizing Networks demo http://www.neuroinformatik.ruhr-uni-bochum.de/ini/VDM/research/gsn/DemoGNG/GNG.html Parameters of the SOM program: t – iterations  (t) =  i (  f /  i ) t/tmax specifies a step in learning  (t) =  i (  f /  i ) t/tmax specifies the size of the neighborhood Maps 1x30 show the formation of Peano's curves. We can try to reconstruct Penfield's maps.reconstruct Penfield's maps

18 EE141 18 Mapping kWTA CPCA Hebbian learning finds relationship between input and output. Example: pat_assoc.proj.gz in Chapter 5, described in 5.2 Simulations for 3 tasks, from easy to impossible.

19 EE141 19 Derivative based Hebbian learning Hebb's rule:  w kj =  (x k -w kj ) y j will be replaced by derivative based learning based on time domain correlation of firing between neurons. This can be implemented in many ways;  For the signal normalization purpose let us assume that the maximum rate of change between two consecutive time frames is 1.  Let us represent derivative of the signal x(t) change by dx(t). Assume that the neuron responds to signal changes instead of signal activation

20 EE141 20 Derivative based Hebbian learning Define product of derivatives pd kj (t)=dx k (t)*dy j (t). Derivative based weight adjustment will be calculated as follows: Feedforward weights are adjusted as  w kj =   (pd ki (t) - w kj ) |pd ki (t)| and feedback weight are adjusted as  w jk =   (pd ki (t) - w jk ) |pd ki (t)| This adjustment gives symmetrical feedforward and feedback weights. x k (t) y j (t) pd kj (t) t

21 EE141 21 Derivative based Hebbian learning Asymmetrical weight can be obtained by using product of shifted derivative values pd kj (+)=dx k (t)*dy j (t+1) and pd kj (-)=dx k (t)*dy j (t-1). Derivative based weight adjustment will be calculated as follows: Feedforward weights are adjusted as  w kj =   (pd ki (+) - w kj ) |pd ki (+)| and feedback weight are adjusted as  w jk =   (pd ki (-) - w jk ) |pd ki (-)| yjyj xkxk w jk w kj x1x1 x2x2

22 EE141 22 Derivative based Hebbian learning Feedforward weights are adjusted as  w kj =   (pd ki (+) - w kj ) |pd ki (+)| x k (t) y j (t) y j (t+1) pd kj (+) t yjyj xkxk w kj x1x1 x2x2

23 EE141 23 Derivative based Hebbian learning and feedback weight are adjusted as  w jk =   (pd ki (-) - w jk ) |pd ki (-)| x k (t) y j (t) y j (t-1) pd kj (-) t yjyj xkxk w jk x1x1 x2x2

24 EE141 24 Task learning Unfortunately Hebbian learning won't suffice to learn arbitrary relationship between input and output. This can be done by learning based on error correction. Where do goals come from? From the "teacher," or confronting the predictions of the internal model.

25 EE141 25 The Delta rule Idea: weights w ik should be revised so that they change strongly for large errors and not undergo a change if there is no error, so  w ik ~ ||t k – o k || s i Change is also proportional to the size of the activation by input s i Phase + is the presentation of the goal, phase – is the result of the network. This is the delta rule.

26 EE141 26 Credit Assignment Credit/blame assignment  w ik =  ||t k – o k || s i The error is local, for image k. If a large error formed and output o k is significantly smaller than expected then input neurons with a large activation will make the error even larger. If output o k is significantly larger than expected then input neurons with a large activation will decrease it significantly. Eg. input s i is the number of calories in different foods, output is a moderate weight; if it's too big then we must decrease high-calorie weights (food), if it's too small then we must increase them. Representations created by an error-minimalization process are the result of the best assignment of credit to many units, and not the greatest correlation (like in Hebbian models).

27 EE141 27 We don't want the weights to change without limits and not accept negative values. This is consistent with biological demands which separate inhibitory and excitatory neurons and have upper weight limits. The weight change mechanism below, based on the delta rule, ensures the fulfillment of both restrictions.  w ik =  ik (1- w ik ) if  ik >0  w ik =  ik w ik if  ik <0 where  ik is the weight change resulting from error propagation Limiting weights This equation limits the weight values to the 0-1 range. The upper limit is biologically justified by the maximum amount of NT which can be emitted and the maximum density of the synapses  ik  w ik weight 0 1

28 EE141 28 Task learning We want: Hebbian learning and learning using error correction, hidden units and biologically justified models. The combination of error correction and correlations can be aligned with what we know about LTP/LTD  w ij =  [  x i y j  +  x i y j   ] Hebbian networks model states of the world but not perception-action. Error correction can learn mapping. Unfortunately the delta rule is only good for output units, and not hidden units, because it has to be given a goal. Backpropagation of errors can teach hidden units. But there is no good biological justification for this method…

29 EE141 29 Simulations Select: pat_assoc.proj.gz, in Chapt. 5 Description: Chapt. 5. 5 The delta rule can learn difficult mappings, at least theoretically...


Download ppt "EE141 1 Self-organization and error correction Janusz A. Starzyk"

Similar presentations


Ads by Google