Computational Explorations in Cognitive Neuroscience Chapter 2

Size: px
Start display at page:

Download "Computational Explorations in Cognitive Neuroscience Chapter 2"

Transcription

1 Computational Explorations in Cognitive Neuroscience Chapter 2

2 2.4 The Electrophysiology of the Neuron Some basic principles of electricity are useful for understanding the function of neurons. This is because a good deal of that function deals with charged atomic particles, called ions. A key concept in understanding the electrophysiology of the neurons is the transmembrane potential. Three major ion types contribute to changes in the transmembrane potential: Na+, K+, and Cl-. The neuron membrane is permeable to each of these ions by virtue of membrane channels or pores. The membranes of neurons and other cell types contain a molecular apparatus called the Na-K pump. It normally acts to extrude Na+ from the cell and collect K+. The result is that Na+ ions are typically in greater concentration outside the cell than inside, and K+ ions are in greater concentration inside the cell. Cl- ions are extruded from the cell due to the transmembrane potential established by the pump. The equilibrium potential for each ion type is that potential at which all the forces acting on the ion across the membrane are balanced.

3 The difference between the transmembrane potential (V m ) and the equilibrium potential (E) creates an electromotive force on the ion species, thereby producing a flow of ions, i.e. a current, across the membrane: I = GV ( m E) (2.4) where I is the transmembrane current, and G is the ion s conductance. The total conductance for ion c may be expressed by the product of the maximum conductance that would occur if all the ion channels were open ( g c ) and the fraction of the total number of channels that are open at any given time t (g c (t)). Thus: ( ) = ( ) ( ) (2.5) I g t g V t E c c c m c We now consider the three fundamental channels and their currents that affect the transmembrane potential: 1) excitatory synaptic input channel (activated by glutamate and passing Na+) 2) inhibitory synaptic input channel (activated by GABA and passing Cl-) 3) leak channel (always open and passing K+) The net sum of all three currents is: ( ) ) + ( ) ( ) ( ) ( ) ( ( ) ( ) ( ) I = g t g V t E + net e e m e g t g V t E i i m i g t g V t E l l m l (2.6)

4 This net current (I_net) is used in the simulator to update the transmembrane potential (v_m) as: b g b g net bg c bgh bg c bgh b g c b gh (2.8) Vm t+ 1 = Vm t + dtv mi = V t + dt m vm ebg e e m g t g E V t + g t g E V t + i i i m g t g E V t l l l m where dt_vm is a time constant reflecting the slowing of changes in potential due to the capacitance of the cell membrane. Neural function can be modeled at different levels. One approach is to construct detailed models of the single neuron, realistically modeling the entire neuronal shape in great detail with realistic compartments for each small patch of membrane, and containing all known membrane components. This is a valuable approach, but precludes the possibility of also modeling networks of neurons. A simplifying approach to network modeling is to treat each individual cell as a point neuron, in which the spatial features of the dendritic tree, soma, and axon are ignored, and the entire neuron is modeled by a single equation. Leabra uses this simplification to model neurons as point processes.

5 Note from (2.8) that if I net is zero, then V m does not change, i.e. it is at rest. The resting transmembrane potential may be written as: V m = gge + gge+ gge gg + gg+ gg e e e i i i l l l e e i i l l (2.9) We see that the resting potential is determined by the three equilibrium potentials, each weighted by the magnitude of their conductances. The greater the excitatory conductance, the greater is the effect on V m of the Na+ equilibrium potential; the greater the inhibitory conductance, the greater is the effect of the Cl- equilibrium potential; and the greater the leak conductance, the greater is the effect of the K+ equilibrium potential. Note that E e is in the depolarizing direction, whereas E i and E l are in the hyperpolarizing direction. Therefore, inhibition and leak counteract excitation.

6 2.5 Computational Implementation of the Neural Activation Function The point neuron activation function used in Leabra attempts to strike a balance between computational efficiency and neurobiological reality. The point neuron model has important differences from the more abstract artificial neural network (ANN) model. In ANNs, the net input to a unit is defined as: η j = xiwij (2.11) i and the transformation of the net input into an activation value that is sent to other units is defined as: y j 1 = + (2.12) e η 1 j This latter equation has the form of a sigmoid function, which is based on the need for a saturating nonlinearity to reflect the natural property of neurons having a linear input-output relation in the middle range with saturation at low and high values of input.

7 In Leabra, there is an explicit separation between excitatory and inhibitory inputs. Only excitatory neurons are explicitly modeled. (In the next chapter, we will see a computational approximation that is used to represent inhibitory influences.) The excitatory input conductance is computed as an average over all weighted inputs to the neuron, normalized by the number of inputs: 1 n e i ij i ij n i = 1 ( ) = = (2.13) g t x w x w

8 In ANNs, the neuronal production of an action potential (spike) can be represented by a threshold with a binary activation value (i.e. 1 if V m is over threshold, 0 otherwise). However, this is not useful when we consider the output of neurons in terms of a rate code, as most Leabra models do. For a rate code, we can consider the neuronal output to be a continuous, real-valued number reflecting the instantaneous rate of spike firing. The spike rate can represent the output of either a single spiking neuron or a population of spiking neurons. A thresholded sigmoid nonlinearity (as used in ANNs) is a good continuous-valued approximation to the output of spiking neurons.

9 2.5.1 Computing Input Conductances Details of Input Conductance Computation The excitatory synaptic input to a neuron depends on the fraction of excitatory input channels that are open. This is computed in Leabra as the product of the sending activation (x i ) times the weight (w ij ) for that input projection (wt in the simulator). A projection is a group of inputs on a dendritic tree from a single source (neuron or neuron group). Computation of the excitatory input allows projections from different sources (indexed by k), which may be grouped on different parts of the dendritic tree of the postsynaptic neuron, to exert different levels of impact. The average of all (n) individual synaptic inputs from the same input projection k is given by: xw 1 = xw (2.14) n i ij k i ij i [In practice, a given network layer may have partial connectivity. In that case, n represents the number of units in the sending layer rather than the number of actual connections (which may be smaller). Missing connections are represented by setting their weights to zero.]

10 The average in (2.14) is then multiplied by a normalizing factor to reflect differences in the expected level of activity of different projections: g e k 1 = xiwij (2.15) α k k The normalizing factor α k is based on the expected activity level of the sending projection. This normalization is useful in simulations because it provides a balance across different inputs, which may have different baseline levels of activity, giving them all roughly the same level of influence. The overall excitatory conductance to a neuron, also called the net input (net in the simulator), is an average of projection-level conductances combined with a bias weight (β, or bias.wt in the simulator). Update of the net input is computed as: 1 β ge ( t) = ( 1 dtnet ) ge ( t 1) + dtnet ge k + np k N 1 1 β = ( 1 dtnet ) ge ( t 1) + dtnet xiwij + n k p k αk N (2.16) where n p is the number of projections; α k is the normalizing factor for projection k; β is the bias weight (bias.wt in the simulator); dt net (dt_net in the simulator) is the time-averaging time constant with value between 0 and 1; and N is the total number of input connections. Division by N has the effect of scaling the bias weight so that it is in the same range as the synaptic inputs.

11 The bias input represents different sensitivities to input (i.e. excitabilities) that exist among different neurons, reflecting a host of possible cellular differences such as in their level of leak current. In Leabra, the bias input is represented by a bias weight (bias.wt in the simulator) factor. An important feature of the bias weight is that it can be modified with learning, like other weights. The time delays that occur as activity is propagated along axons, across synapses, and through dendritic trees is reflected in Leabra by time averaging. This is important for smoothing out rapid transitions or fluctuations that could cause instability in network models. The term dt net (dt_net in the simulator) represents a time-averaging time constant, reflecting this sluggishness. To summarize (2.16): to compute the current excitatory conductance, g e (t), the previous value, g e (t-1) is multiplied by (1-dt net ) and the current inputs by dt net. Since the default value of dt net is set to 0.7, this has the effect of giving greater weight to the current input, while also allowing the previous level to fade out.

12 Differential Projection-Level Scaling As stated above, by their position on different parts of the dendritic tree, different sources may exert different levels of impact of the postsynaptic neuron. rk 1 g = s x w k r α e k i ij p p k k (2.17) Arbitrary absolute, s k (wt_scale.abs in the simulator), and relative, r k (wt_scale.rel in the simulator) scaling constants, are introduced to increase or decrease the effectiveness of certain projections, either absolutely or as a fraction of the total projections. This can be useful in some cases to represent factors such as the proximity to the soma on the dendritic tree of different projections. However, they are often set to 1, so they have no effect.

13 2.5.2 Point Neuron Parameter Values In Leabra, Eq is used to compute the net input, and then Eq. 2.8 is used to update the membrane potential. In running Leabra simulations, the parameter values are typically normalized to a range between 0 and 1, as in Table β ge ( t) = ( 1 dtnet ) ge ( t 1) + dtnet ge k + np k N 1 1 β = ( 1 dtnet ) ge ( t 1) + dtnet xiwij + n k p k αk N b g b g bg c bgh bg c bgh b g c b gh Vm t+ 1 = Vm t + dtv mi = V t + dt m vm ebg e e m g t g E V t + g t g E V t + i i i m g t g E V t l l l m net

14 2.5.3 The Discrete Spiking Output Function After the membrane potential is updated, an output value is computed as a function of this potential. There are two options for this output: discrete or continuous. To simulate the discrete spiking output of the neuron, Leabra uses a simple threshold mechanism to output an activation value (act in the simulator), of 1 if the membrane potential exceeds a threshold value (thr in the simulator), and zero otherwise. The refractory period is implemented by resetting the membrane potential to a sub-resting level (v_m_r in the simulator) on the time step following the spike. Extended synaptic effects due to a spike are implemented by extending the spike activation for multiple cycles using the dur parameter. The firing rate is time-averaged (act_eq in the simulator) as: y eq j N spikes = γ eq (2.18) Ncycles where N spikes is the number of spikes fired during a time period, N cycles is the total number of cycles in the period, and γ eq (eq_gain in the simulator) is a scaling factor.

15 2.5.4 The Rate Code Output Function A rate code output function is a reasonable approximation to the output of an ensemble of neurons, rather than a single neuron. It also has the advantage of providing a smoother activation dynamics. The output in this case is continuous rather than discrete. The output activation depends on the difference between the membrane potential and the threshold level in the positive direction. The activation (act in the simulator) is computed as: y j γ Vm Θ + = γ V m Θ (2.19) where γ is a gain parameter (act_gain in the simulator), Θ is the threshold, and [x] + means to take the value of x if positive and zero if negative. Eq. (2.19) can be re-written as: y j 1 = 1+ Θ ( γ V ) 1 m + (2.20) In this form, it has a similar form to Eq. (2.12), showing that the continuous output activation has the form of a sigmoidal function.

16 One problem is that (2.12) has a sharp transition at the threshold. This form does not reflect the effect of randomness in firing that characterizes all real neuronal output. To reflect the normally stochastic behavior of real neurons, the simulator modifies the rate-code activation function by convolution with a Gaussiandistributed noise function (Fig 2.13). The effect of this convolution is to smooth the sharp transition in the activation function (Fig 2.14). The smoothed activation function is sometimes referred to as the noisy-x-over-x-plus-1 or noisy XX1 function. The noisy XX1 function gives a good approximation to the rate produced by discrete spiking in a unit that has noise added to its membrane potential (Fig 2.15).

17 2.5.5 Summary (Box 2.2) 1) Activation flows from the sending units (x i ) through the weights (w ij ), resulting in excitatory net input g e (net) over all inputs (including the bias weight). 2) Excitatory input is combined with inhibition and leak to compute the membrane potential V m (v_m). 3) Activation y j (act) is a thresholded sigmoidal function of the membrane potential.

18 2.7 Hypothesis Testing Analysis of a Neural Detector Statistical view of point neuron activation function. Hypothesis testing: comparison of hypotheses with data. Detection is translated into the determination of how well a hypothesis is supported by the data. Contrast between hypothesis that some entity is present in environment with (null) hypothesis that it is not. To determine which hypothesis is most warranted, we want to compare the relative probabilities that each hypothesis is true. The joint probability of the hypothesis (h) and the data (d) is given by P(h,d). It is equivalent to the intersection of the hypothesis and data. Conditional probability: (, ) ( ) P h d P d ( ) = (2.23) P h d Interpretation: when we receive some particular input data, this equation give the probability that the hypothesis is true.

19 Likelihood: (, ) ( ) P h d ( ) = (2.25) P d h P h Interpretation: assuming a hypothesis to be true, this equation tells the likelihood of receiving some particular input data, i.e. how likely is the data as predicted by the hypothesis. Notice that: (, ) = ( ) ( ) = ( ) ( ) (2.27) P h d P h d P d P d h P h Rearranging, we get Bayes formula: c h Phd c h b g bg PdhPh = Pd This formula is the basis for the field of Bayesian statistics. The term on the left is called the posterior, and P(h) is called the prior. Thus, the posterior is equal to the likelihood times the prior, normalized by the probability of the data. Bayes formula gives us an expression for [the probability of a hypothesis being true conditional on receiving a particular data item (the posterior)] in terms of the product of [the probability of receiving a particular data item given that the hypothesis is true (the likelihood)] and [the probability of the hypothesis being true without having seen any data (the prior)], normalized by [the probability of the data item occurring].

20 We would like a way to replace P(d) so that we can deal with only likelihood and prior terms. We can express P(d) as: bg b g d i c h bg e j di Pd = Phd, + Phd, = PdhPh + PdhPh since the hypothesis and the null hypothesis are mutually exclusive. Bayes formula then becomes: c h Phd = PdhPh c h b g c h bg+ PdhPh e j di PdhPh It is now in a form in which the product of the posterior and likelihood of a hypothesis being true is expressed as a fraction of the total product (i.e. for the hypothesis being true and being false). To apply Bayes formula to the operation of a detector neuron, we assume that the likelihood function is directly proportional to the number of inputs that match the template pattern that the detector is set to detect. In other words, assuming that the hypothesis is true that an entity is in the environment, the likelihood of receiving a particular input pattern is proportional to the number of its inputs that match the template for that entity. We can also assume that the null likelihood is directly proportional to the number of inputs that fail to match the template pattern.

21 We can then express Bayes formula as: c h Phd = b g xwph i i i xwph i ibg+ b1 xigwi 1 Ph bg i i Conclusion: Given an input pattern, we can determine the probability that the hypothesis is true that the input pattern is caused by a particular entity in the environment. We add up the number of hits and non-hits and weigh the sums by the priors. To use the prior, we need an estimate of the prevalence of our entity in the environment. That is, determination of the posterior depends on the value of the prior. For the simple example given in the chapter, we have the following relationship: Ph b g / Ph di Phd c h.1/ / / /.1.95 So, we see that the greater the prevalence of our entity in the environment, the greater will be our confidence that it caused any given data item.

Balance of Electric and Diffusion Forces

Balance of Electric and Diffusion Forces Balance of Electric and Diffusion Forces Ions flow into and out of the neuron under the forces of electricity and concentration gradients (diffusion). The net result is a electric potential difference

More information

Neuron. Detector Model. Understanding Neural Components in Detector Model. Detector vs. Computer. Detector. Neuron. output. axon

Neuron. Detector Model. Understanding Neural Components in Detector Model. Detector vs. Computer. Detector. Neuron. output. axon Neuron Detector Model 1 The detector model. 2 Biological properties of the neuron. 3 The computational unit. Each neuron is detecting some set of conditions (e.g., smoke detector). Representation is what

More information

3 Detector vs. Computer

3 Detector vs. Computer 1 Neurons 1. The detector model. Also keep in mind this material gets elaborated w/the simulations, and the earliest material is often hardest for those w/primarily psych background. 2. Biological properties

More information

Synaptic dynamics. John D. Murray. Synaptic currents. Simple model of the synaptic gating variable. First-order kinetics

Synaptic dynamics. John D. Murray. Synaptic currents. Simple model of the synaptic gating variable. First-order kinetics Synaptic dynamics John D. Murray A dynamical model for synaptic gating variables is presented. We use this to study the saturation of synaptic gating at high firing rate. Shunting inhibition and the voltage

More information

Ch. 5. Membrane Potentials and Action Potentials

Ch. 5. Membrane Potentials and Action Potentials Ch. 5. Membrane Potentials and Action Potentials Basic Physics of Membrane Potentials Nerve and muscle cells: Excitable Capable of generating rapidly changing electrochemical impulses at their membranes

More information

CISC 3250 Systems Neuroscience

CISC 3250 Systems Neuroscience CISC 3250 Systems Neuroscience Systems Neuroscience How the nervous system performs computations How groups of neurons work together to achieve intelligence Professor Daniel Leeds dleeds@fordham.edu JMH

More information

9 Generation of Action Potential Hodgkin-Huxley Model

9 Generation of Action Potential Hodgkin-Huxley Model 9 Generation of Action Potential Hodgkin-Huxley Model (based on chapter 12, W.W. Lytton, Hodgkin-Huxley Model) 9.1 Passive and active membrane models In the previous lecture we have considered a passive

More information

Integration of synaptic inputs in dendritic trees

Integration of synaptic inputs in dendritic trees Integration of synaptic inputs in dendritic trees Theoretical Neuroscience Fabrizio Gabbiani Division of Neuroscience Baylor College of Medicine One Baylor Plaza Houston, TX 77030 e-mail:gabbiani@bcm.tmc.edu

More information

Neurophysiology. Danil Hammoudi.MD

Neurophysiology. Danil Hammoudi.MD Neurophysiology Danil Hammoudi.MD ACTION POTENTIAL An action potential is a wave of electrical discharge that travels along the membrane of a cell. Action potentials are an essential feature of animal

More information

Introduction to Neural Networks U. Minn. Psy 5038 Spring, 1999 Daniel Kersten. Lecture 2a. The Neuron - overview of structure. From Anderson (1995)

Introduction to Neural Networks U. Minn. Psy 5038 Spring, 1999 Daniel Kersten. Lecture 2a. The Neuron - overview of structure. From Anderson (1995) Introduction to Neural Networks U. Minn. Psy 5038 Spring, 1999 Daniel Kersten Lecture 2a The Neuron - overview of structure From Anderson (1995) 2 Lect_2a_Mathematica.nb Basic Structure Information flow:

More information

Modelling stochastic neural learning

Modelling stochastic neural learning Modelling stochastic neural learning Computational Neuroscience András Telcs telcs.andras@wigner.mta.hu www.cs.bme.hu/~telcs http://pattern.wigner.mta.hu/participants/andras-telcs Compiled from lectures

More information

CSE/NB 528 Final Lecture: All Good Things Must. CSE/NB 528: Final Lecture

CSE/NB 528 Final Lecture: All Good Things Must. CSE/NB 528: Final Lecture CSE/NB 528 Final Lecture: All Good Things Must 1 Course Summary Where have we been? Course Highlights Where do we go from here? Challenges and Open Problems Further Reading 2 What is the neural code? What

More information

Structure and Measurement of the brain lecture notes

Structure and Measurement of the brain lecture notes Structure and Measurement of the brain lecture notes Marty Sereno 2009/2010!"#$%&'(&#)*%$#&+,'-&.)"/*"&.*)*-'(0&1223 Neurons and Models Lecture 1 Topics Membrane (Nernst) Potential Action potential/voltage-gated

More information

Nerve Signal Conduction. Resting Potential Action Potential Conduction of Action Potentials

Nerve Signal Conduction. Resting Potential Action Potential Conduction of Action Potentials Nerve Signal Conduction Resting Potential Action Potential Conduction of Action Potentials Resting Potential Resting neurons are always prepared to send a nerve signal. Neuron possesses potential energy

More information

Membrane Potentials, Action Potentials, and Synaptic Transmission. Membrane Potential

Membrane Potentials, Action Potentials, and Synaptic Transmission. Membrane Potential Cl Cl - - + K + K+ K + K Cl - 2/2/15 Membrane Potentials, Action Potentials, and Synaptic Transmission Core Curriculum II Spring 2015 Membrane Potential Example 1: K +, Cl - equally permeant no charge

More information

Decoding. How well can we learn what the stimulus is by looking at the neural responses?

Decoding. How well can we learn what the stimulus is by looking at the neural responses? Decoding How well can we learn what the stimulus is by looking at the neural responses? Two approaches: devise explicit algorithms for extracting a stimulus estimate directly quantify the relationship

More information

Revision: Neural Network

Revision: Neural Network Revision: Neural Network Exercise 1 Tell whether each of the following statements is true or false by checking the appropriate box. Statement True False a) A perceptron is guaranteed to perfectly learn

More information

Neural Conduction. biologyaspoetry.com

Neural Conduction. biologyaspoetry.com Neural Conduction biologyaspoetry.com Resting Membrane Potential -70mV A cell s membrane potential is the difference in the electrical potential ( charge) between the inside and outside of the cell. The

More information

Lecture 10 : Neuronal Dynamics. Eileen Nugent

Lecture 10 : Neuronal Dynamics. Eileen Nugent Lecture 10 : Neuronal Dynamics Eileen Nugent Origin of the Cells Resting Membrane Potential: Nernst Equation, Donnan Equilbrium Action Potentials in the Nervous System Equivalent Electrical Circuits and

More information

Basic elements of neuroelectronics -- membranes -- ion channels -- wiring. Elementary neuron models -- conductance based -- modelers alternatives

Basic elements of neuroelectronics -- membranes -- ion channels -- wiring. Elementary neuron models -- conductance based -- modelers alternatives Computing in carbon Basic elements of neuroelectronics -- membranes -- ion channels -- wiring Elementary neuron models -- conductance based -- modelers alternatives Wiring neurons together -- synapses

More information

Supporting Online Material for

Supporting Online Material for www.sciencemag.org/cgi/content/full/319/5869/1543/dc1 Supporting Online Material for Synaptic Theory of Working Memory Gianluigi Mongillo, Omri Barak, Misha Tsodyks* *To whom correspondence should be addressed.

More information

Biological Modeling of Neural Networks

Biological Modeling of Neural Networks Week 4 part 2: More Detail compartmental models Biological Modeling of Neural Networks Week 4 Reducing detail - Adding detail 4.2. Adding detail - apse -cable equat Wulfram Gerstner EPFL, Lausanne, Switzerland

More information

لجنة الطب البشري رؤية تنير دروب تميزكم

لجنة الطب البشري رؤية تنير دروب تميزكم 1) Hyperpolarization phase of the action potential: a. is due to the opening of voltage-gated Cl channels. b. is due to prolonged opening of voltage-gated K + channels. c. is due to closure of the Na +

More information

Mathematical Foundations of Neuroscience - Lecture 3. Electrophysiology of neurons - continued

Mathematical Foundations of Neuroscience - Lecture 3. Electrophysiology of neurons - continued Mathematical Foundations of Neuroscience - Lecture 3. Electrophysiology of neurons - continued Filip Piękniewski Faculty of Mathematics and Computer Science, Nicolaus Copernicus University, Toruń, Poland

More information

Linear Regression, Neural Networks, etc.

Linear Regression, Neural Networks, etc. Linear Regression, Neural Networks, etc. Gradient Descent Many machine learning problems can be cast as optimization problems Define a function that corresponds to learning error. (More on this later)

More information

Physiology Unit 2. MEMBRANE POTENTIALS and SYNAPSES

Physiology Unit 2. MEMBRANE POTENTIALS and SYNAPSES Physiology Unit 2 MEMBRANE POTENTIALS and SYNAPSES Neuron Communication Neurons are stimulated by receptors on dendrites and cell bodies (soma) Ligand gated ion channels GPCR s Neurons stimulate cells

More information

Propagation& Integration: Passive electrical properties

Propagation& Integration: Passive electrical properties Fundamentals of Neuroscience (NSCS 730, Spring 2010) Instructor: Art Riegel; email: Riegel@musc.edu; Room EL 113; time: 9 11 am Office: 416C BSB (792.5444) Propagation& Integration: Passive electrical

More information

Basic elements of neuroelectronics -- membranes -- ion channels -- wiring

Basic elements of neuroelectronics -- membranes -- ion channels -- wiring Computing in carbon Basic elements of neuroelectronics -- membranes -- ion channels -- wiring Elementary neuron models -- conductance based -- modelers alternatives Wires -- signal propagation -- processing

More information

Quantitative Electrophysiology

Quantitative Electrophysiology ECE 795: Quantitative Electrophysiology Notes for Lecture #4 Wednesday, October 4, 2006 7. CHEMICAL SYNAPSES AND GAP JUNCTIONS We will look at: Chemical synapses in the nervous system Gap junctions in

More information

Neural networks. Chapter 20, Section 5 1

Neural networks. Chapter 20, Section 5 1 Neural networks Chapter 20, Section 5 Chapter 20, Section 5 Outline Brains Neural networks Perceptrons Multilayer perceptrons Applications of neural networks Chapter 20, Section 5 2 Brains 0 neurons of

More information

Control and Integration. Nervous System Organization: Bilateral Symmetric Animals. Nervous System Organization: Radial Symmetric Animals

Control and Integration. Nervous System Organization: Bilateral Symmetric Animals. Nervous System Organization: Radial Symmetric Animals Control and Integration Neurophysiology Chapters 10-12 Nervous system composed of nervous tissue cells designed to conduct electrical impulses rapid communication to specific cells or groups of cells Endocrine

More information

Probabilistic Models in Theoretical Neuroscience

Probabilistic Models in Theoretical Neuroscience Probabilistic Models in Theoretical Neuroscience visible unit Boltzmann machine semi-restricted Boltzmann machine restricted Boltzmann machine hidden unit Neural models of probabilistic sampling: introduction

More information

COGNITIVE SCIENCE 107A

COGNITIVE SCIENCE 107A COGNITIVE SCIENCE 107A Electrophysiology: Electrotonic Properties 2 Jaime A. Pineda, Ph.D. The Model Neuron Lab Your PC/CSB115 http://cogsci.ucsd.edu/~pineda/cogs107a/index.html Labs - Electrophysiology

More information

Linear discriminant functions

Linear discriminant functions Andrea Passerini passerini@disi.unitn.it Machine Learning Discriminative learning Discriminative vs generative Generative learning assumes knowledge of the distribution governing the data Discriminative

More information

Introduction Biologically Motivated Crude Model Backpropagation

Introduction Biologically Motivated Crude Model Backpropagation Introduction Biologically Motivated Crude Model Backpropagation 1 McCulloch-Pitts Neurons In 1943 Warren S. McCulloch, a neuroscientist, and Walter Pitts, a logician, published A logical calculus of the

More information

Neural Networks. Chapter 18, Section 7. TB Artificial Intelligence. Slides from AIMA 1/ 21

Neural Networks. Chapter 18, Section 7. TB Artificial Intelligence. Slides from AIMA   1/ 21 Neural Networks Chapter 8, Section 7 TB Artificial Intelligence Slides from AIMA http://aima.cs.berkeley.edu / 2 Outline Brains Neural networks Perceptrons Multilayer perceptrons Applications of neural

More information

Neural networks. Chapter 19, Sections 1 5 1

Neural networks. Chapter 19, Sections 1 5 1 Neural networks Chapter 19, Sections 1 5 Chapter 19, Sections 1 5 1 Outline Brains Neural networks Perceptrons Multilayer perceptrons Applications of neural networks Chapter 19, Sections 1 5 2 Brains 10

More information

Neurophysiology of a VLSI spiking neural network: LANN21

Neurophysiology of a VLSI spiking neural network: LANN21 Neurophysiology of a VLSI spiking neural network: LANN21 Stefano Fusi INFN, Sezione Roma I Università di Roma La Sapienza Pza Aldo Moro 2, I-185, Roma fusi@jupiter.roma1.infn.it Paolo Del Giudice Physics

More information

9 Generation of Action Potential Hodgkin-Huxley Model

9 Generation of Action Potential Hodgkin-Huxley Model 9 Generation of Action Potential Hodgkin-Huxley Model (based on chapter 2, W.W. Lytton, Hodgkin-Huxley Model) 9. Passive and active membrane models In the previous lecture we have considered a passive

More information

An Introductory Course in Computational Neuroscience

An Introductory Course in Computational Neuroscience An Introductory Course in Computational Neuroscience Contents Series Foreword Acknowledgments Preface 1 Preliminary Material 1.1. Introduction 1.1.1 The Cell, the Circuit, and the Brain 1.1.2 Physics of

More information

(Feed-Forward) Neural Networks Dr. Hajira Jabeen, Prof. Jens Lehmann

(Feed-Forward) Neural Networks Dr. Hajira Jabeen, Prof. Jens Lehmann (Feed-Forward) Neural Networks 2016-12-06 Dr. Hajira Jabeen, Prof. Jens Lehmann Outline In the previous lectures we have learned about tensors and factorization methods. RESCAL is a bilinear model for

More information

Simple neuron model Components of simple neuron

Simple neuron model Components of simple neuron Outline 1. Simple neuron model 2. Components of artificial neural networks 3. Common activation functions 4. MATLAB representation of neural network. Single neuron model Simple neuron model Components

More information

Chapter 9. Nerve Signals and Homeostasis

Chapter 9. Nerve Signals and Homeostasis Chapter 9 Nerve Signals and Homeostasis A neuron is a specialized nerve cell that is the functional unit of the nervous system. Neural signaling communication by neurons is the process by which an animal

More information

Introduction and the Hodgkin-Huxley Model

Introduction and the Hodgkin-Huxley Model 1 Introduction and the Hodgkin-Huxley Model Richard Bertram Department of Mathematics and Programs in Neuroscience and Molecular Biophysics Florida State University Tallahassee, Florida 32306 Reference:

More information

All-or-None Principle and Weakness of Hodgkin-Huxley Mathematical Model

All-or-None Principle and Weakness of Hodgkin-Huxley Mathematical Model All-or-None Principle and Weakness of Hodgkin-Huxley Mathematical Model S. A. Sadegh Zadeh, C. Kambhampati International Science Index, Mathematical and Computational Sciences waset.org/publication/10008281

More information

Hopfield Neural Network and Associative Memory. Typical Myelinated Vertebrate Motoneuron (Wikipedia) Topic 3 Polymers and Neurons Lecture 5

Hopfield Neural Network and Associative Memory. Typical Myelinated Vertebrate Motoneuron (Wikipedia) Topic 3 Polymers and Neurons Lecture 5 Hopfield Neural Network and Associative Memory Typical Myelinated Vertebrate Motoneuron (Wikipedia) PHY 411-506 Computational Physics 2 1 Wednesday, March 5 1906 Nobel Prize in Physiology or Medicine.

More information

How do synapses transform inputs?

How do synapses transform inputs? Neurons to networks How do synapses transform inputs? Excitatory synapse Input spike! Neurotransmitter release binds to/opens Na channels Change in synaptic conductance! Na+ influx E.g. AMA synapse! Depolarization

More information

6.3.4 Action potential

6.3.4 Action potential I ion C m C m dφ dt Figure 6.8: Electrical circuit model of the cell membrane. Normally, cells are net negative inside the cell which results in a non-zero resting membrane potential. The membrane potential

More information

Nervous Systems: Neuron Structure and Function

Nervous Systems: Neuron Structure and Function Nervous Systems: Neuron Structure and Function Integration An animal needs to function like a coherent organism, not like a loose collection of cells. Integration = refers to processes such as summation

More information

MEMBRANE POTENTIALS AND ACTION POTENTIALS:

MEMBRANE POTENTIALS AND ACTION POTENTIALS: University of Jordan Faculty of Medicine Department of Physiology & Biochemistry Medical students, 2017/2018 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Review: Membrane physiology

More information

PROPERTY OF ELSEVIER SAMPLE CONTENT - NOT FINAL. The Nervous System and Muscle

PROPERTY OF ELSEVIER SAMPLE CONTENT - NOT FINAL. The Nervous System and Muscle The Nervous System and Muscle SECTION 2 2-1 Nernst Potential 2-2 Resting Membrane Potential 2-3 Axonal Action Potential 2-4 Neurons 2-5 Axonal Conduction 2-6 Morphology of Synapses 2-7 Chemical Synaptic

More information

1 Balanced networks: Trading speed for noise

1 Balanced networks: Trading speed for noise Physics 178/278 - David leinfeld - Winter 2017 (Corrected yet incomplete notes) 1 Balanced networks: Trading speed for noise 1.1 Scaling of neuronal inputs An interesting observation is that the subthresold

More information

FRTF01 L8 Electrophysiology

FRTF01 L8 Electrophysiology FRTF01 L8 Electrophysiology Lecture Electrophysiology in general Recap: Linear Time Invariant systems (LTI) Examples of 1 and 2-dimensional systems Stability analysis The need for non-linear descriptions

More information

Artifical Neural Networks

Artifical Neural Networks Neural Networks Artifical Neural Networks Neural Networks Biological Neural Networks.................................. Artificial Neural Networks................................... 3 ANN Structure...........................................

More information

Action Potential Propagation

Action Potential Propagation Action Potential Propagation 2 Action Potential is a transient alteration of transmembrane voltage (or membrane potential) across an excitable membrane generated by the activity of voltage-gated ion channels.

More information

Compartmental Modelling

Compartmental Modelling Modelling Neurons Computing and the Brain Compartmental Modelling Spring 2010 2 1 Equivalent Electrical Circuit A patch of membrane is equivalent to an electrical circuit This circuit can be described

More information

Single neuron models. L. Pezard Aix-Marseille University

Single neuron models. L. Pezard Aix-Marseille University Single neuron models L. Pezard Aix-Marseille University Biophysics Biological neuron Biophysics Ionic currents Passive properties Active properties Typology of models Compartmental models Differential

More information

Information processing. Divisions of nervous system. Neuron structure and function Synapse. Neurons, synapses, and signaling 11/3/2017

Information processing. Divisions of nervous system. Neuron structure and function Synapse. Neurons, synapses, and signaling 11/3/2017 Neurons, synapses, and signaling Chapter 48 Information processing Divisions of nervous system Central nervous system (CNS) Brain and a nerve cord Integration center Peripheral nervous system (PNS) Nerves

More information

Lecture 11 : Simple Neuron Models. Dr Eileen Nugent

Lecture 11 : Simple Neuron Models. Dr Eileen Nugent Lecture 11 : Simple Neuron Models Dr Eileen Nugent Reading List Nelson, Biological Physics, Chapter 12 Phillips, PBoC, Chapter 17 Gerstner, Neuronal Dynamics: from single neurons to networks and models

More information

Biology September 2015 Exam One FORM G KEY

Biology September 2015 Exam One FORM G KEY Biology 251 17 September 2015 Exam One FORM G KEY PRINT YOUR NAME AND ID NUMBER in the space that is provided on the answer sheet, and then blacken the letter boxes below the corresponding letters of your

More information

Biology September 2015 Exam One FORM W KEY

Biology September 2015 Exam One FORM W KEY Biology 251 17 September 2015 Exam One FORM W KEY PRINT YOUR NAME AND ID NUMBER in the space that is provided on the answer sheet, and then blacken the letter boxes below the corresponding letters of your

More information

Nervous Tissue. Neurons Electrochemical Gradient Propagation & Transduction Neurotransmitters Temporal & Spatial Summation

Nervous Tissue. Neurons Electrochemical Gradient Propagation & Transduction Neurotransmitters Temporal & Spatial Summation Nervous Tissue Neurons Electrochemical Gradient Propagation & Transduction Neurotransmitters Temporal & Spatial Summation What is the function of nervous tissue? Maintain homeostasis & respond to stimuli

More information

Universality of sensory-response systems

Universality of sensory-response systems excite.org(anism): Electrical Signaling Universality of sensory-response systems Three step process: sensation-integration-response Bacterial chemotaxis Madigan et al. Fig. 8.24 Rick Stewart (CBMG) Human

More information

Nervous Tissue. Neurons Neural communication Nervous Systems

Nervous Tissue. Neurons Neural communication Nervous Systems Nervous Tissue Neurons Neural communication Nervous Systems What is the function of nervous tissue? Maintain homeostasis & respond to stimuli Sense & transmit information rapidly, to specific cells and

More information

Lecture 4: Feed Forward Neural Networks

Lecture 4: Feed Forward Neural Networks Lecture 4: Feed Forward Neural Networks Dr. Roman V Belavkin Middlesex University BIS4435 Biological neurons and the brain A Model of A Single Neuron Neurons as data-driven models Neural Networks Training

More information

Neurons and Nervous Systems

Neurons and Nervous Systems 34 Neurons and Nervous Systems Concept 34.1 Nervous Systems Consist of Neurons and Glia Nervous systems have two categories of cells: Neurons, or nerve cells, are excitable they generate and transmit electrical

More information

Data Mining Part 5. Prediction

Data Mining Part 5. Prediction Data Mining Part 5. Prediction 5.5. Spring 2010 Instructor: Dr. Masoud Yaghini Outline How the Brain Works Artificial Neural Networks Simple Computing Elements Feed-Forward Networks Perceptrons (Single-layer,

More information

The Nervous System and the Sodium-Potassium Pump

The Nervous System and the Sodium-Potassium Pump The Nervous System and the Sodium-Potassium Pump 1. Define the following terms: Ion: A Student Activity on Membrane Potentials Cation: Anion: Concentration gradient: Simple diffusion: Sodium-Potassium

More information

Action Potentials and Synaptic Transmission Physics 171/271

Action Potentials and Synaptic Transmission Physics 171/271 Action Potentials and Synaptic Transmission Physics 171/271 Flavio Fröhlich (flavio@salk.edu) September 27, 2006 In this section, we consider two important aspects concerning the communication between

More information

Νευροφυσιολογία και Αισθήσεις

Νευροφυσιολογία και Αισθήσεις Biomedical Imaging & Applied Optics University of Cyprus Νευροφυσιολογία και Αισθήσεις Διάλεξη 5 Μοντέλο Hodgkin-Huxley (Hodgkin-Huxley Model) Response to Current Injection 2 Hodgin & Huxley Sir Alan Lloyd

More information

Overview Organization: Central Nervous System (CNS) Peripheral Nervous System (PNS) innervate Divisions: a. Afferent

Overview Organization: Central Nervous System (CNS) Peripheral Nervous System (PNS) innervate Divisions: a. Afferent Overview Organization: Central Nervous System (CNS) Brain and spinal cord receives and processes information. Peripheral Nervous System (PNS) Nerve cells that link CNS with organs throughout the body.

More information

Conductance-Based Integrate-and-Fire Models

Conductance-Based Integrate-and-Fire Models NOTE Communicated by Michael Hines Conductance-Based Integrate-and-Fire Models Alain Destexhe Department of Physiology, Laval University School of Medicine, Québec, G1K 7P4, Canada A conductance-based

More information

Neural Modeling and Computational Neuroscience. Claudio Gallicchio

Neural Modeling and Computational Neuroscience. Claudio Gallicchio Neural Modeling and Computational Neuroscience Claudio Gallicchio 1 Neuroscience modeling 2 Introduction to basic aspects of brain computation Introduction to neurophysiology Neural modeling: Elements

More information

The Neuron - F. Fig. 45.3

The Neuron - F. Fig. 45.3 excite.org(anism): Electrical Signaling The Neuron - F. Fig. 45.3 Today s lecture we ll use clickers Review today 11:30-1:00 in 2242 HJ Patterson Electrical signals Dendrites: graded post-synaptic potentials

More information

Physiology Unit 2. MEMBRANE POTENTIALS and SYNAPSES

Physiology Unit 2. MEMBRANE POTENTIALS and SYNAPSES Physiology Unit 2 MEMBRANE POTENTIALS and SYNAPSES In Physiology Today Ohm s Law I = V/R Ohm s law: the current through a conductor between two points is directly proportional to the voltage across the

More information

Transport of ions across plasma membranes

Transport of ions across plasma membranes Transport of ions across plasma membranes Plasma Membranes of Excitable tissues Ref: Guyton, 13 th ed: pp: 61-71. 12 th ed: pp: 57-69. 11th ed: p57-71, Electrical properties of plasma membranes Part A:

More information

Ch 8: Neurons: Cellular and Network Properties, Part 1

Ch 8: Neurons: Cellular and Network Properties, Part 1 Developed by John Gallagher, MS, DVM Ch 8: Neurons: Cellular and Network Properties, Part 1 Objectives: Describe the Cells of the NS Explain the creation and propagation of an electrical signal in a nerve

More information

Consider the following spike trains from two different neurons N1 and N2:

Consider the following spike trains from two different neurons N1 and N2: About synchrony and oscillations So far, our discussions have assumed that we are either observing a single neuron at a, or that neurons fire independent of each other. This assumption may be correct in

More information

Numerical Learning Algorithms

Numerical Learning Algorithms Numerical Learning Algorithms Example SVM for Separable Examples.......................... Example SVM for Nonseparable Examples....................... 4 Example Gaussian Kernel SVM...............................

More information

Channels can be activated by ligand-binding (chemical), voltage change, or mechanical changes such as stretch.

Channels can be activated by ligand-binding (chemical), voltage change, or mechanical changes such as stretch. 1. Describe the basic structure of an ion channel. Name 3 ways a channel can be "activated," and describe what occurs upon activation. What are some ways a channel can decide what is allowed to pass through?

More information

CELL BIOLOGY - CLUTCH CH. 9 - TRANSPORT ACROSS MEMBRANES.

CELL BIOLOGY - CLUTCH CH. 9 - TRANSPORT ACROSS MEMBRANES. !! www.clutchprep.com K + K + K + K + CELL BIOLOGY - CLUTCH CONCEPT: PRINCIPLES OF TRANSMEMBRANE TRANSPORT Membranes and Gradients Cells must be able to communicate across their membrane barriers to materials

More information

ACTION POTENTIAL. Dr. Ayisha Qureshi Professor MBBS, MPhil

ACTION POTENTIAL. Dr. Ayisha Qureshi Professor MBBS, MPhil ACTION POTENTIAL Dr. Ayisha Qureshi Professor MBBS, MPhil DEFINITIONS: Stimulus: A stimulus is an external force or event which when applied to an excitable tissue produces a characteristic response. Subthreshold

More information

Information Theory and Neuroscience II

Information Theory and Neuroscience II John Z. Sun and Da Wang Massachusetts Institute of Technology October 14, 2009 Outline System Model & Problem Formulation Information Rate Analysis Recap 2 / 23 Neurons Neuron (denoted by j) I/O: via synapses

More information

Neural networks. Chapter 20. Chapter 20 1

Neural networks. Chapter 20. Chapter 20 1 Neural networks Chapter 20 Chapter 20 1 Outline Brains Neural networks Perceptrons Multilayer networks Applications of neural networks Chapter 20 2 Brains 10 11 neurons of > 20 types, 10 14 synapses, 1ms

More information

Biomedical Instrumentation

Biomedical Instrumentation ELEC ENG 4BD4: Biomedical Instrumentation Lecture 5 Bioelectricity 1. INTRODUCTION TO BIOELECTRICITY AND EXCITABLE CELLS Historical perspective: Bioelectricity first discovered by Luigi Galvani in 1780s

More information

When is an Integrate-and-fire Neuron like a Poisson Neuron?

When is an Integrate-and-fire Neuron like a Poisson Neuron? When is an Integrate-and-fire Neuron like a Poisson Neuron? Charles F. Stevens Salk Institute MNL/S La Jolla, CA 92037 cfs@salk.edu Anthony Zador Salk Institute MNL/S La Jolla, CA 92037 zador@salk.edu

More information

Chapter 48 Neurons, Synapses, and Signaling

Chapter 48 Neurons, Synapses, and Signaling Chapter 48 Neurons, Synapses, and Signaling Concept 48.1 Neuron organization and structure reflect function in information transfer Neurons are nerve cells that transfer information within the body Neurons

More information

Deconstructing Actual Neurons

Deconstructing Actual Neurons 1 Deconstructing Actual Neurons Richard Bertram Department of Mathematics and Programs in Neuroscience and Molecular Biophysics Florida State University Tallahassee, Florida 32306 Reference: The many ionic

More information

Dendrites - receives information from other neuron cells - input receivers.

Dendrites - receives information from other neuron cells - input receivers. The Nerve Tissue Neuron - the nerve cell Dendrites - receives information from other neuron cells - input receivers. Cell body - includes usual parts of the organelles of a cell (nucleus, mitochondria)

More information

Machine Learning. Neural Networks. (slides from Domingos, Pardo, others)

Machine Learning. Neural Networks. (slides from Domingos, Pardo, others) Machine Learning Neural Networks (slides from Domingos, Pardo, others) For this week, Reading Chapter 4: Neural Networks (Mitchell, 1997) See Canvas For subsequent weeks: Scaling Learning Algorithms toward

More information

Resting Distribution of Ions in Mammalian Neurons. Outside Inside (mm) E ion Permab. K Na Cl

Resting Distribution of Ions in Mammalian Neurons. Outside Inside (mm) E ion Permab. K Na Cl Resting Distribution of Ions in Mammalian Neurons Outside Inside (mm) E ion Permab. K + 5 100-81 1.0 150 15 +62 0.04 Cl - 100 10-62 0.045 V m = -60 mv V m approaches the Equilibrium Potential of the most

More information

NEURONS, SENSE ORGANS, AND NERVOUS SYSTEMS CHAPTER 34

NEURONS, SENSE ORGANS, AND NERVOUS SYSTEMS CHAPTER 34 NEURONS, SENSE ORGANS, AND NERVOUS SYSTEMS CHAPTER 34 KEY CONCEPTS 34.1 Nervous Systems Are Composed of Neurons and Glial Cells 34.2 Neurons Generate Electric Signals by Controlling Ion Distributions 34.3

More information

arxiv: v1 [q-bio.nc] 13 Feb 2018

arxiv: v1 [q-bio.nc] 13 Feb 2018 Gain control with A-type potassium current: I A as a switch between divisive and subtractive inhibition Joshua H Goldwyn 1*, Bradley R Slabe 2, Joseph B Travers 3, David Terman 2 arxiv:182.4794v1 [q-bio.nc]

More information

Math 345 Intro to Math Biology Lecture 20: Mathematical model of Neuron conduction

Math 345 Intro to Math Biology Lecture 20: Mathematical model of Neuron conduction Math 345 Intro to Math Biology Lecture 20: Mathematical model of Neuron conduction Junping Shi College of William and Mary November 8, 2018 Neuron Neurons Neurons are cells in the brain and other subsystems

More information

LESSON 2.2 WORKBOOK How do our axons transmit electrical signals?

LESSON 2.2 WORKBOOK How do our axons transmit electrical signals? LESSON 2.2 WORKBOOK How do our axons transmit electrical signals? This lesson introduces you to the action potential, which is the process by which axons signal electrically. In this lesson you will learn

More information

Bio 449 Fall Exam points total Multiple choice. As with any test, choose the best answer in each case. Each question is 3 points.

Bio 449 Fall Exam points total Multiple choice. As with any test, choose the best answer in each case. Each question is 3 points. Name: Exam 1 100 points total Multiple choice. As with any test, choose the best answer in each case. Each question is 3 points. 1. The term internal environment, as coined by Clause Bernard, is best defined

More information

Artificial Neural Network

Artificial Neural Network Artificial Neural Network Contents 2 What is ANN? Biological Neuron Structure of Neuron Types of Neuron Models of Neuron Analogy with human NN Perceptron OCR Multilayer Neural Network Back propagation

More information

CN2 1: Introduction. Paul Gribble. Sep 10,

CN2 1: Introduction. Paul Gribble. Sep 10, CN2 1: Introduction Paul Gribble http://gribblelab.org Sep 10, 2012 Administrivia Class meets Mondays, 2:00pm - 3:30pm and Thursdays, 11:30am - 1:00pm, in NSC 245A Contact me with any questions or to set

More information

CS:4420 Artificial Intelligence

CS:4420 Artificial Intelligence CS:4420 Artificial Intelligence Spring 2018 Neural Networks Cesare Tinelli The University of Iowa Copyright 2004 18, Cesare Tinelli and Stuart Russell a a These notes were originally developed by Stuart

More information

Single-Cell and Mean Field Neural Models

Single-Cell and Mean Field Neural Models 1 Single-Cell and Mean Field Neural Models Richard Bertram Department of Mathematics and Programs in Neuroscience and Molecular Biophysics Florida State University Tallahassee, Florida 32306 The neuron

More information