Statistical models of visual neurons

Size: px
Start display at page:

Download "Statistical models of visual neurons"

Transcription

1 Statistical models of visual neurons Final Presentation Anna Sotnikova Applied Mathematics and Statistics, and Scientific Computation program Advisor: Dr. Daniel A. Butts Department of Biology 1

2 The power of transistor-based computing barely competes with brainpower of a mouse Inspired by Ray Kurzweil s book The Singularity is Near 2

3 Visual system of a neuron light electrical spikes dt stimulus neural response computation stimulus number of spikes time (sec) General goal: find a functional link between stimulus and response time time (sec) time

4 Statistical modeling of a neuron s response? stimulus firing rate Poisson process: average # of spikes is given by the firing rate <n(t)> = r(t)dt Prob(n(t)) = r(t)n(t) n(t)! exp( r(t)) n(t) - # of spikes between t, t+dt n(t) Identify a model for the firing rate 4

5 Project goals Implement 5 specific models: 1. Linear models Spike Triggered Average (STA) 2. Quadratic models Generalized Linear Model (GLM) (Fall semester) Spike Triggered Covariance (STC) 3. Cascade model Generalized Quadratic Model (GQM) (Spring semester) Nonlinear Input Model (NIM) Test models on 3 data sets: 1. Model-specific synthetic data to validate all algorithms 2. Synthetic Retina ganglion cells (RGC) data to test NIM model 3. Experimental Lateral geniculate body (LGN) to test GLM model 5

6 Project goals Implement 5 specific models: 1. Linear models Spike Triggered Average (STA) 2. Quadratic models Generalized Linear Model (GLM) (Fall semester) Spike Triggered Covariance (STC) 3. Cascade model Generalized Quadratic Model (GQM) (Spring semester) Nonlinear Input Model (NIM) Test models on 3 data sets: 1. Model-specific synthetic data to validate all algorithms 2. Synthetic Retina ganglion cells (RGC) data to test NIM model 3. Experimental Lateral geniculate body (LGN) to test GLM model 6

7 Generalized Linear Model (GLM): a single linear filter (k) + history filter (h) s(t, ) =(S(t ),...,S(t)) n obs (t, ) =(n(t ),...,n(t)) k linear filter: models receptive field of a neuron h history filter: models neuron s memory of spikes Spiking non-linearity: models neuron s non-linear processing firing rate model r(t) =F (k s(t, )+h n obs (t, )+b) 7 Picture reference: Butts DA, Weng C, Jin JZ, Alonso JM, Paninski L (211) Temporal precision in the visual pathway through the interplay of excitation and stimulus-driven suppression.

8 How to fit parameters to a probabilistic data? number of spikes number of spikes another run Neural response time(sec) 8

9 Maximum Likelihood estimation P (N ) = Y t (r(t)) n(t) n(t)! exp( r(t)) Poisson distribution N = {n(t)} = {r(t)} LL( ) =log(p (N )) = X t n(t)log(r(t)) X r(t) t GLM model specifically: r(t) =F (k s(t, )+h n obs (t, )+b) = {k, h,b} F () = exp() Maximize log-likelihood using gradient ascent method LL( ) = X t X n(t)(k s(t)+h n obs (t)+b) exp(k s(t)+h n obs (t)+b) t 9

10 Synthetic data for GLM algorithm validation Step 1: generate white noise stimulus s(t) stimulus time (sec) Step 2: calculate r(t) using test filters and test function F: F(x) = Exp(x) Step 3: generate Poisson spikes n(t) using calculated r(t) 1

11 Use synthetic GLM data without history to recover a decaying linear k-filter created filter optimization (no history) Created filter vs optimization result Stimulus more important to the neuron.7 filter value Stimulus less important to the neuron time step time (j in the formula) 11 spike event

12 Use synthetic GLM data without history to recover oscillating linear k-filter 1 Created filter vs optimization result created filter optimization (no history) filter value time step time (j in the formula) 12 spike event

13 Use synthetic GLM data with history to recover k filter vs optimization result for generated data k filter optimization both k (linear) & h (history) filters time step time linear filter k history filter (h<) h filter and optimization result for generated data h filter optimization Neuron cannot fire after it just did time step 13 time

14 History cannot be ignored! (synthetic GLM data with exponential history filter) 1 used filter optmization result with history optimization result without history used k and found k (k,b,h/k,b,h case) h filter and optimization result for generated data h filter optimization -.6 linear k-filter value history filter time step time 14 spike event

15 RGC data (no history): GLM optimal filter matches STA STA = spiked-triggered average stimulus 3 STA filter vs optimization result for filter k 2 STA found filter k filter value STA = X j s(t j, )n(t j ) time step spike event True for any Gaussian fluctuating variable (see report for details) 15

16 LGN data: regularization of the search algorithm.4 High resolution, k filter, no regularization Use a priori information that k-filter must be a smooth filter. Penalize LL for large gradients time step RLL( ) = X t n(t)(k s(t)+h n obs (t)+b) X exp(k s(t)+h n obs (t)+b) X (k i k i 1 ) 2 t i Find optimal lambda by cross validation 16

17 LGN data: cross-validation for the choice of regularization parameter 545 Lambda validation for dt/ Negative LogLikelihood good choice for lambda lambda 17

18 LGN data: GLM implementation with regularization, k filter.4 High resolution, k filter, no regularization time step high resolution no regularization high resolution optimal regularization High resolution, k filter, optimal regularization time step

19 Main result on GLM: recovered history term from LGN data 1 Filter h for dt/ spike event -5 refractory period of a neuron detected with a real LGN data time (sec) Picture reference: Butts DA, Weng C, Jin JZ, Alonso JM, Paninski L (211) Temporal precision in the visual pathway through the interplay of excitation and stimulus-driven suppression. 19

20 Non-linear Input Model (NIM) motivation primary neurons secondary neuron NIM is based on the hypothesis that the dominant nonlinearities imposed by the physiological mechanisms arise from rectification of neuron s inputs Picture reference: Butts DA, Weng C, Jin JZ, Alonso JM, Paninski L (211) Temporal precision in the visual pathway through the interplay of excitation and stimulus-driven suppression. 2

21 Non-linear Input Model (NIM) r(t) =F ( X i! i f(k i s(t, ))) w = 1 f F w = -1 f 21 Picture reference: Butts DA, Weng C, Jin JZ, Alonso JM, Paninski L (211) Temporal precision in the visual pathway through the interplay of excitation and stimulus-driven suppression.

22 Synthetic data for NIM algorithm validation Step 1: generate white noise stimulus s(t) stimulus time (sec) Step 2: calculate r(t) using two test filters k1 & k2 and various combinations for test functions F and f: F(x) = Exp(x) f(x) = Log(1+Exp(x)) f(x) =, x<; x, x>= Step 3: generate Poisson spikes n(t) using calculated r(t) 22

23 Validation of NIM algorithm using synthetic NIM data F(x) =Exp(x) f(x) =, x<; x, x>= filter 2 filter 1 23

24 Details of rectifying non-linearity are not too important Generate: F(x) = Exp(x) f(x) = Log (1+Exp(x)) Recover: F(x) = Exp(x) f(x) =, x<; x, x>= filter 2 filter 1 24

25 Recovering model parameters from RGC synthetic data.6.4 filter 1 optimized filter 2 optimized true filter 2 true filter time step 25

26 RGC spiking output vs NIM-recovered spiking output 3 measured (given) estimated (optimization) firing rate time step 26 Picture reference: Butts DA, Weng C, Jin JZ, Alonso JM, Paninski L (211) Temporal precision in the visual pathway through the interplay of excitation and stimulus-driven suppression.

27 Generalized Quadratic Model (GQM) r(t) =F (k L s(t, )+ X i! i (k i s(t, )) 2 ) Spiking non-linearity Linear filter A set of (a few) quadratic filters w = +1/-1 A competing model to NIM with minimal (quadratic) modification to simple linear filtering 27

28 Comparison of GLM, NIM, GQM for a single RGC data set Negative LL values GLM GQM NIM 28

29 Summary Realized GLM model on both real and synthetic data - full algorithm validation on synthetic data - recovered linear filter that matched STA - detected a short refractory period with a history term - results matched with the paper: Butts DA, Weng C, Jin JZ, Alonso JM, Paninski L (211) Temporal precision in the visual pathway through the interplay of excitation and stimulus-driven suppression. Realized GQM on synthetic data (1 linear/2 quadratic) Realized NIM model on synthetic data (2 rectified terms) - GQM does not recover correct NIM filters - NIM finds correct filters irrespective non-linearity details 29

30 Updated project schedule October - mid November November Implement STA and STC models Test models on synthetic data set and validate models on real data set November - December December - mid February Implement Generalized Linear Model (GLM) Test model on synthetic data set and validate model on LGN data set January - March mid February - mid April Implement Generalized Quadratic Model (GQM) and Nonlinear Input Model (NIM) Test models on synthetic data set and validate models on LGN data set April - May Mid April - May Collect results and prepare final report 3

31 Implementation Hardware MacBook Air, 1.4 GHz Intel Core i5, 4 GB 16 MHz DDR3 Software Matlab_R215b 31

32 Deliverables Code for STA and STC Code for GLM Code for GQM Code for NIM Validation codes for all models Reports and presentations 32

33 References 1. McFarland JM, Cui Y, Butts DA (213) Inferring nonlinear neuronal computation based on physiologically plausible inputs. PLoS Computational Biology 9(7): e Butts DA, Weng C, Jin JZ, Alonso JM, Paninski L (211) Temporal precision in the visual pathway through the interplay of excitation and stimulus-driven suppression. J. Neurosci. 31: Simoncelli EP, Pillow J, Paninski L, Schwartz O (24) Characterization of neural responses with stochastic stimuli. In: The cognitive neurosciences (Gazzaniga M, ed), pp Cambridge, MA: MIT. 4. Paninski, L., Pillow, J., and Lewi, J. (26). Statistical models for neural encoding, decoding, and optimal stimulus design. 5. Shlens, J. (28). Notes on Generalized Linear Models of Neurons. 33

34 GQM algorithm validation is the same as GLM synthesize data with 2 (+) quadratic filters search for 2 (+) quadratic filters nd quadratic filter validation used quadratic filter optimization result st quadratic filter validation used quadratic filter optimization result time step used linear filter optimization result Linear filter validation time step 34 linear filter time step

35 GQM algorithm validation is the same as GLM synthesize data with 2 (+) quadratic filters search for 3 (+) quadratic filters nd quadratic filter validation original optimized 1 optimized 2.5 1st quadratic filter validation original optimized Found 2 identical filters consistent with 2nd filter time step Linear filter validation original optimized First q-filter matches time step 35 linear filter matches time step

Project proposal: Statistical models of visual neurons

Project proposal: Statistical models of visual neurons Project proposal: Statistical models of visual neurons Anna Sotnikova asotniko@math.umd.edu Project Advisor: Prof. Daniel A. Butts dab@umd.edu Department of Biology Abstract Studying visual neurons may

More information

Efficient Visual Coding: From Retina To V2

Efficient Visual Coding: From Retina To V2 Efficient Visual Coding: From Retina To V Honghao Shan Garrison Cottrell Computer Science and Engineering UCSD La Jolla, CA 9093-0404 shanhonghao@gmail.com, gary@ucsd.edu Abstract The human visual system

More information

C. Poultney S. Cho pra (NYU Courant Institute) Y. LeCun

C. Poultney S. Cho pra (NYU Courant Institute) Y. LeCun Efficient Learning of Sparse Overcomplete Representations with an Energy-Based Model Marc'Aurelio Ranzato C. Poultney S. Cho pra (NYU Courant Institute) Y. LeCun CIAR Summer School Toronto 2006 Why Extracting

More information

Agenda. ! Efficient Coding Hypothesis. ! Response Function and Optimal Stimulus Ensemble. ! Firing-Rate Code. ! Spike-Timing Code

Agenda. ! Efficient Coding Hypothesis. ! Response Function and Optimal Stimulus Ensemble. ! Firing-Rate Code. ! Spike-Timing Code 1 Agenda! Efficient Coding Hypothesis! Response Function and Optimal Stimulus Ensemble! Firing-Rate Code! Spike-Timing Code! OSE vs Natural Stimuli! Conclusion 2 Efficient Coding Hypothesis! [Sensory systems]

More information

Bayesian Inference in fmri Will Penny

Bayesian Inference in fmri Will Penny Bayesian Inference in fmri Will Penny Bayesian Approaches in Neuroscience Karolinska Institutet, Stockholm February 2016 Overview Posterior Probability Maps Hemodynamic Response Functions Population

More information

Analysis of Functional MRI Timeseries Data Using Signal Processing Techniques

Analysis of Functional MRI Timeseries Data Using Signal Processing Techniques Analysis of Functional MRI Timeseries Data Using Signal Processing Techniques Sea Chen Department of Biomedical Engineering Advisors: Dr. Charles A. Bouman and Dr. Mark J. Lowe S. Chen Final Exam October

More information

Exercise: Simulating spatial processing in the visual pathway with convolution

Exercise: Simulating spatial processing in the visual pathway with convolution Exercise: Simulating spatial processing in the visual pathway with convolution This problem uses convolution to simulate the spatial filtering performed by neurons in the early stages of the visual pathway,

More information

CELL COMPETITION GENERATES. Inst. fur Theor. Physik, SFB Nichtlin. Dynamik, Univ.

CELL COMPETITION GENERATES.  Inst. fur Theor. Physik, SFB Nichtlin. Dynamik, Univ. ON-CENTER AND OFF-CENTER CELL COMPETITION GENERATES ORIENTED RECEPTIVE FIELDS FROM NON-ORIENTED STIMULI IN KOHONEN'S SELF-ORGANIZING MAP Maximilian Riesenhuber y Hans-Ulrich Bauer Theo Geisel max@ai.mit.edu,

More information

Detecting Salient Contours Using Orientation Energy Distribution. Part I: Thresholding Based on. Response Distribution

Detecting Salient Contours Using Orientation Energy Distribution. Part I: Thresholding Based on. Response Distribution Detecting Salient Contours Using Orientation Energy Distribution The Problem: How Does the Visual System Detect Salient Contours? CPSC 636 Slide12, Spring 212 Yoonsuck Choe Co-work with S. Sarma and H.-C.

More information

Vision: From Eye to Brain (Chap 3)

Vision: From Eye to Brain (Chap 3) Vision: From Eye to Brain (Chap 3) Lecture 7 Jonathan Pillow Sensation & Perception (PSY 345 / NEU 325) Princeton University, Fall 2017 early visual pathway eye eye optic nerve optic chiasm optic tract

More information

A Hierarchial Model for Visual Perception

A Hierarchial Model for Visual Perception A Hierarchial Model for Visual Perception Bolei Zhou 1 and Liqing Zhang 2 1 MOE-Microsoft Laboratory for Intelligent Computing and Intelligent Systems, and Department of Biomedical Engineering, Shanghai

More information

4.12 Generalization. In back-propagation learning, as many training examples as possible are typically used.

4.12 Generalization. In back-propagation learning, as many training examples as possible are typically used. 1 4.12 Generalization In back-propagation learning, as many training examples as possible are typically used. It is hoped that the network so designed generalizes well. A network generalizes well when

More information

Improvement of optic flow estimation from an event-based sensor with recurrently connected processing layers

Improvement of optic flow estimation from an event-based sensor with recurrently connected processing layers Improvement of optic flow estimation from an event-based sensor with recurrently connected processing layers Vilim Štih 31st March 2014 1 Introduction The Dynamic Vision Sensor (DVS) is a visual sensor

More information

A Parallel Hardware Architecture for Information-Theoretic Adaptive Filtering

A Parallel Hardware Architecture for Information-Theoretic Adaptive Filtering A Parallel Hardware Architecture for Information-Theoretic Adaptive Filtering HPRCTA 2010 Stefan Craciun Dr. Alan D. George Dr. Herman Lam Dr. Jose C. Principe November 14, 2010 NSF CHREC Center ECE Department,

More information

Persistent Homology for Characterizing Stimuli Response in the Primary Visual Cortex

Persistent Homology for Characterizing Stimuli Response in the Primary Visual Cortex Persistent Homology for Characterizing Stimuli Response in the Primary Visual Cortex Avani Wildani Tatyana O. Sharpee (PI) ICML Topology 6/25/2014 The big questions - How do we turn sensory stimuli into

More information

Developing a Data Driven System for Computational Neuroscience

Developing a Data Driven System for Computational Neuroscience Developing a Data Driven System for Computational Neuroscience Ross Snider and Yongming Zhu Montana State University, Bozeman MT 59717, USA Abstract. A data driven system implies the need to integrate

More information

Edge Detection (with a sidelight introduction to linear, associative operators). Images

Edge Detection (with a sidelight introduction to linear, associative operators). Images Images (we will, eventually, come back to imaging geometry. But, now that we know how images come from the world, we will examine operations on images). Edge Detection (with a sidelight introduction to

More information

Loopy Belief Propagation

Loopy Belief Propagation Loopy Belief Propagation Research Exam Kristin Branson September 29, 2003 Loopy Belief Propagation p.1/73 Problem Formalization Reasoning about any real-world problem requires assumptions about the structure

More information

HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2006

HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2006 MIT OpenCourseWare http://ocw.mit.edu HST.583 Functional Magnetic Resonance Imaging: Data Acquisition and Analysis Fall 2006 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

More information

SPARSE CODES FOR NATURAL IMAGES. Davide Scaramuzza Autonomous Systems Lab (EPFL)

SPARSE CODES FOR NATURAL IMAGES. Davide Scaramuzza Autonomous Systems Lab (EPFL) SPARSE CODES FOR NATURAL IMAGES Davide Scaramuzza (davide.scaramuzza@epfl.ch) Autonomous Systems Lab (EPFL) Final rapport of Wavelet Course MINI-PROJECT (Prof. Martin Vetterli) ABSTRACT The human visual

More information

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science V1-inspired orientation selective filters for image processing and computer vision Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2 Most of the images in this

More information

CAMCOS Report Day. December 9 th, 2015 San Jose State University Project Theme: Classification

CAMCOS Report Day. December 9 th, 2015 San Jose State University Project Theme: Classification CAMCOS Report Day December 9 th, 2015 San Jose State University Project Theme: Classification On Classification: An Empirical Study of Existing Algorithms based on two Kaggle Competitions Team 1 Team 2

More information

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Algorithms for Inference Fall 2014

Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science Algorithms for Inference Fall 2014 Massachusetts Institute of Technology Department of Electrical Engineering and Computer Science 6.438 Algorithms for Inference Fall 2014 1 Course Overview This course is about performing inference in complex

More information

Coordinate Transformations in Parietal Cortex. Computational Models of Neural Systems Lecture 7.1. David S. Touretzky November, 2013

Coordinate Transformations in Parietal Cortex. Computational Models of Neural Systems Lecture 7.1. David S. Touretzky November, 2013 Coordinate Transformations in Parietal Cortex Lecture 7.1 David S. Touretzky November, 2013 Outline Anderson: parietal cells represent locations of visual stimuli. Zipser and Anderson: a backprop network

More information

Deep Generative Models Variational Autoencoders

Deep Generative Models Variational Autoencoders Deep Generative Models Variational Autoencoders Sudeshna Sarkar 5 April 2017 Generative Nets Generative models that represent probability distributions over multiple variables in some way. Directed Generative

More information

GPU-Based Simulation of Spiking Neural Networks with Real-Time Performance & High Accuracy

GPU-Based Simulation of Spiking Neural Networks with Real-Time Performance & High Accuracy GPU-Based Simulation of Spiking Neural Networks with Real-Time Performance & High Accuracy Dmitri Yudanov, Muhammad Shaaban, Roy Melton, Leon Reznik Department of Computer Engineering Rochester Institute

More information

Computational Models of V1 cells. Gabor and CORF

Computational Models of V1 cells. Gabor and CORF 1 Computational Models of V1 cells Gabor and CORF George Azzopardi Nicolai Petkov 2 Primary visual cortex (striate cortex or V1) 3 Types of V1 Cells Hubel and Wiesel, Nobel Prize winners Three main types

More information

Linear and Non-linear Dimentionality Reduction Applied to Gene Expression Data of Cancer Tissue Samples

Linear and Non-linear Dimentionality Reduction Applied to Gene Expression Data of Cancer Tissue Samples Linear and Non-linear Dimentionality Reduction Applied to Gene Expression Data of Cancer Tissue Samples Franck Olivier Ndjakou Njeunje Applied Mathematics, Statistics, and Scientific Computation University

More information

Neurosim User s Guide

Neurosim User s Guide Neurosim User s Guide version 2.1 Diek W. Wheeler and John P. Horn Department of Neurobiology and Center for the Neural Basis of Cognition University of Pittsburgh School of Medicine Pittsburgh, PA 15261

More information

Computationally Efficient M-Estimation of Log-Linear Structure Models

Computationally Efficient M-Estimation of Log-Linear Structure Models Computationally Efficient M-Estimation of Log-Linear Structure Models Noah Smith, Doug Vail, and John Lafferty School of Computer Science Carnegie Mellon University {nasmith,dvail2,lafferty}@cs.cmu.edu

More information

Richard S. Zemel 1 Georey E. Hinton North Torrey Pines Rd. Toronto, ONT M5S 1A4. Abstract

Richard S. Zemel 1 Georey E. Hinton North Torrey Pines Rd. Toronto, ONT M5S 1A4. Abstract Developing Population Codes By Minimizing Description Length Richard S Zemel 1 Georey E Hinton University oftoronto & Computer Science Department The Salk Institute, CNL University oftoronto 0 North Torrey

More information

CSE 158 Lecture 2. Web Mining and Recommender Systems. Supervised learning Regression

CSE 158 Lecture 2. Web Mining and Recommender Systems. Supervised learning Regression CSE 158 Lecture 2 Web Mining and Recommender Systems Supervised learning Regression Supervised versus unsupervised learning Learning approaches attempt to model data in order to solve a problem Unsupervised

More information

AMSC/CMSC 664 Final Presentation

AMSC/CMSC 664 Final Presentation AMSC/CMSC 664 Final Presentation May 9, 2017 Jon Dehn Advisor: Dr. Sergio Torres, Leidos Corporation Project Goal Build a framework for testing compute-intensive algorithms in air traffic management First

More information

MultiVariate Bayesian (MVB) decoding of brain images

MultiVariate Bayesian (MVB) decoding of brain images MultiVariate Bayesian (MVB) decoding of brain images Alexa Morcom Edinburgh SPM course 2015 With thanks to J. Daunizeau, K. Brodersen for slides stimulus behaviour encoding of sensorial or cognitive state?

More information

Feature selection and dimensionality reduction of neural data to model adaptation in the retina

Feature selection and dimensionality reduction of neural data to model adaptation in the retina Feature selection and dimensionality reduction of neural data to model adaptation in the retina Neda Nategh Electrical Engineering Department, Stanford University Stanford, CA 9435 nnategh@stanford.edu

More information

New Approaches for EEG Source Localization and Dipole Moment Estimation. Shun Chi Wu, Yuchen Yao, A. Lee Swindlehurst University of California Irvine

New Approaches for EEG Source Localization and Dipole Moment Estimation. Shun Chi Wu, Yuchen Yao, A. Lee Swindlehurst University of California Irvine New Approaches for EEG Source Localization and Dipole Moment Estimation Shun Chi Wu, Yuchen Yao, A. Lee Swindlehurst University of California Irvine Outline Motivation why EEG? Mathematical Model equivalent

More information

Practical Course WS12/13 Introduction to Monte Carlo Localization

Practical Course WS12/13 Introduction to Monte Carlo Localization Practical Course WS12/13 Introduction to Monte Carlo Localization Cyrill Stachniss and Luciano Spinello 1 State Estimation Estimate the state of a system given observations and controls Goal: 2 Bayes Filter

More information

Nonlinear projections. Motivation. High-dimensional. data are. Perceptron) ) or RBFN. Multi-Layer. Example: : MLP (Multi(

Nonlinear projections. Motivation. High-dimensional. data are. Perceptron) ) or RBFN. Multi-Layer. Example: : MLP (Multi( Nonlinear projections Université catholique de Louvain (Belgium) Machine Learning Group http://www.dice.ucl ucl.ac.be/.ac.be/mlg/ 1 Motivation High-dimensional data are difficult to represent difficult

More information

Modeling Visual Cortex V4 in Naturalistic Conditions with Invari. Representations

Modeling Visual Cortex V4 in Naturalistic Conditions with Invari. Representations Modeling Visual Cortex V4 in Naturalistic Conditions with Invariant and Sparse Image Representations Bin Yu Departments of Statistics and EECS University of California at Berkeley Rutgers University, May

More information

Deep Learning. Deep Learning. Practical Application Automatically Adding Sounds To Silent Movies

Deep Learning. Deep Learning. Practical Application Automatically Adding Sounds To Silent Movies http://blog.csdn.net/zouxy09/article/details/8775360 Automatic Colorization of Black and White Images Automatically Adding Sounds To Silent Movies Traditionally this was done by hand with human effort

More information

Subjective Randomness and Natural Scene Statistics

Subjective Randomness and Natural Scene Statistics Subjective Randomness and Natural Scene Statistics Ethan Schreiber (els@cs.brown.edu) Department of Computer Science, 115 Waterman St Providence, RI 02912 USA Thomas L. Griffiths (tom griffiths@berkeley.edu)

More information

Supplementary Figure 1. Decoding results broken down for different ROIs

Supplementary Figure 1. Decoding results broken down for different ROIs Supplementary Figure 1 Decoding results broken down for different ROIs Decoding results for areas V1, V2, V3, and V1 V3 combined. (a) Decoded and presented orientations are strongly correlated in areas

More information

Introduction to Neuroimaging Janaina Mourao-Miranda

Introduction to Neuroimaging Janaina Mourao-Miranda Introduction to Neuroimaging Janaina Mourao-Miranda Neuroimaging techniques have changed the way neuroscientists address questions about functional anatomy, especially in relation to behavior and clinical

More information

Perception as an Inference Problem

Perception as an Inference Problem Perception as an Inference Problem Bruno A. Olshausen Helen Wills Neuroscience Institute, School of Optometry and Redwood Center for Theoretical Neuroscience UC Berkeley What are the principles governing

More information

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2D Gabor functions and filters for image processing and computer vision Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2 Most of the images in this presentation

More information

This is an author produced version of Definition and composition of motor primitives using latent force models and hidden Markov models.

This is an author produced version of Definition and composition of motor primitives using latent force models and hidden Markov models. This is an author produced version of Definition and composition of motor primitives using latent force models and hidden Markov models. White Rose Research Online URL for this paper: http://eprints.whiterose.ac.uk/116580/

More information

Self-Organizing Sparse Codes

Self-Organizing Sparse Codes Self-Organizing Sparse Codes Yangqing Jia Sergey Karayev 2010-12-16 Abstract Sparse coding as applied to natural image patches learns Gabor-like components that resemble those found in the lower areas

More information

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, March 8

CS/NEUR125 Brains, Minds, and Machines. Due: Wednesday, March 8 CS/NEUR125 Brains, Minds, and Machines Lab 6: Inferring Location from Hippocampal Place Cells Due: Wednesday, March 8 This lab explores how place cells in the hippocampus encode the location of an animal

More information

Bio-inspired Binocular Disparity with Position-Shift Receptive Field

Bio-inspired Binocular Disparity with Position-Shift Receptive Field Bio-inspired Binocular Disparity with Position-Shift Receptive Field Fernanda da C. e C. Faria, Jorge Batista and Helder Araújo Institute of Systems and Robotics, Department of Electrical Engineering and

More information

Three-Dimensional Oceanic Flows from Eulerian Velocity Data

Three-Dimensional Oceanic Flows from Eulerian Velocity Data Second-year Ph.D. student, Applied Math and Scientific Computing Project Advisor: Kayo Ide Department of Atmospheric and Oceanic Science Center for Scientific Computation and Mathematical Modeling Earth

More information

Locating ego-centers in depth for hippocampal place cells

Locating ego-centers in depth for hippocampal place cells 204 5th Joint Symposium on Neural Computation Proceedings UCSD (1998) Locating ego-centers in depth for hippocampal place cells Kechen Zhang,' Terrence J. Sejeowski112 & Bruce L. ~cnau~hton~ 'Howard Hughes

More information

Effects of multi-scale velocity heterogeneities on wave-equation migration Yong Ma and Paul Sava, Center for Wave Phenomena, Colorado School of Mines

Effects of multi-scale velocity heterogeneities on wave-equation migration Yong Ma and Paul Sava, Center for Wave Phenomena, Colorado School of Mines Effects of multi-scale velocity heterogeneities on wave-equation migration Yong Ma and Paul Sava, Center for Wave Phenomena, Colorado School of Mines SUMMARY Velocity models used for wavefield-based seismic

More information

Transistor: Digital Building Blocks

Transistor: Digital Building Blocks Final Exam Review Transistor: Digital Building Blocks Logically, each transistor acts as a switch Combined to implement logic functions (gates) AND, OR, NOT Combined to build higher-level structures Multiplexer,

More information

Generative and discriminative classification techniques

Generative and discriminative classification techniques Generative and discriminative classification techniques Machine Learning and Category Representation 2014-2015 Jakob Verbeek, November 28, 2014 Course website: http://lear.inrialpes.fr/~verbeek/mlcr.14.15

More information

Dawood Public School Computer Studies Course Outline for Class V

Dawood Public School Computer Studies Course Outline for Class V Dawood Public School Computer Studies Course Outline for 2017-2018 Class V Course book- Keyboard Computer Science with Application Software (V) Second edition (Oxford University Press) Month wise distribution

More information

Neurophysical Model by Barten and Its Development

Neurophysical Model by Barten and Its Development Chapter 14 Neurophysical Model by Barten and Its Development According to the Barten model, the perceived foveal image is corrupted by internal noise caused by statistical fluctuations, both in the number

More information

REDUCTION OF CODING ARTIFACTS IN LOW-BIT-RATE VIDEO CODING. Robert L. Stevenson. usually degrade edge information in the original image.

REDUCTION OF CODING ARTIFACTS IN LOW-BIT-RATE VIDEO CODING. Robert L. Stevenson. usually degrade edge information in the original image. REDUCTION OF CODING ARTIFACTS IN LOW-BIT-RATE VIDEO CODING Robert L. Stevenson Laboratory for Image and Signal Processing Department of Electrical Engineering University of Notre Dame Notre Dame, IN 46556

More information

Rate-coded Restricted Boltzmann Machines for Face Recognition

Rate-coded Restricted Boltzmann Machines for Face Recognition Rate-coded Restricted Boltzmann Machines for Face Recognition Yee Whye Teh Department of Computer Science University of Toronto Toronto M5S 2Z9 Canada ywteh@cs.toronto.edu Geoffrey E. Hinton Gatsby Computational

More information

Perception Viewed as an Inverse Problem

Perception Viewed as an Inverse Problem Perception Viewed as an Inverse Problem Fechnerian Causal Chain of Events - an evaluation Fechner s study of outer psychophysics assumes that the percept is a result of a causal chain of events: Distal

More information

On nonparametric estimation of Hawkes models for earthquakes and DRC Monkeypox

On nonparametric estimation of Hawkes models for earthquakes and DRC Monkeypox On nonparametric estimation of Hawkes models for earthquakes and DRC Monkeypox USGS Getty Images Frederic Paik Schoenberg, UCLA Statistics Collaborators: Joshua Gordon, Ryan Harrigan. Also thanks to: SCEC,

More information

What is machine learning?

What is machine learning? Machine learning, pattern recognition and statistical data modelling Lecture 12. The last lecture Coryn Bailer-Jones 1 What is machine learning? Data description and interpretation finding simpler relationship

More information

The elements of early vision or, what vision (and this course) is all about. NYU/CNS Center for Neural Science

The elements of early vision or, what vision (and this course) is all about. NYU/CNS Center for Neural Science The elements of early vision or, what vision (and this course) is all about NYU/CNS Center for Neural Science The Electric Monk was a labor saving device, like a dishwasher or a video recorder. Dishwashers

More information

Non-Stationary Covariance Models for Discontinuous Functions as Applied to Aircraft Design Problems

Non-Stationary Covariance Models for Discontinuous Functions as Applied to Aircraft Design Problems Non-Stationary Covariance Models for Discontinuous Functions as Applied to Aircraft Design Problems Trent Lukaczyk December 1, 2012 1 Introduction 1.1 Application The NASA N+2 Supersonic Aircraft Project

More information

Research on the New Image De-Noising Methodology Based on Neural Network and HMM-Hidden Markov Models

Research on the New Image De-Noising Methodology Based on Neural Network and HMM-Hidden Markov Models Research on the New Image De-Noising Methodology Based on Neural Network and HMM-Hidden Markov Models Wenzhun Huang 1, a and Xinxin Xie 1, b 1 School of Information Engineering, Xijing University, Xi an

More information

Reconstruction of Natural Scenes from Ensemble Responses in the Lateral Geniculate Nucleus

Reconstruction of Natural Scenes from Ensemble Responses in the Lateral Geniculate Nucleus The Journal of Neuroscience, September 15, 1999, 19(18):8036 8042 Reconstruction of Natural Scenes from Ensemble Responses in the Lateral Geniculate Nucleus Garrett B. Stanley, Fei F. Li, and Yang Dan

More information

Artificial Intelligence for Robotics: A Brief Summary

Artificial Intelligence for Robotics: A Brief Summary Artificial Intelligence for Robotics: A Brief Summary This document provides a summary of the course, Artificial Intelligence for Robotics, and highlights main concepts. Lesson 1: Localization (using Histogram

More information

MTTTS17 Dimensionality Reduction and Visualization. Spring 2018 Jaakko Peltonen. Lecture 11: Neighbor Embedding Methods continued

MTTTS17 Dimensionality Reduction and Visualization. Spring 2018 Jaakko Peltonen. Lecture 11: Neighbor Embedding Methods continued MTTTS17 Dimensionality Reduction and Visualization Spring 2018 Jaakko Peltonen Lecture 11: Neighbor Embedding Methods continued This Lecture Neighbor embedding by generative modeling Some supervised neighbor

More information

Characterization and Modeling of Deleted Questions on Stack Overflow

Characterization and Modeling of Deleted Questions on Stack Overflow Characterization and Modeling of Deleted Questions on Stack Overflow Denzil Correa, Ashish Sureka http://correa.in/ February 16, 2014 Denzil Correa, Ashish Sureka (http://correa.in/) ACM WWW-2014 February

More information

Function approximation using RBF network. 10 basis functions and 25 data points.

Function approximation using RBF network. 10 basis functions and 25 data points. 1 Function approximation using RBF network F (x j ) = m 1 w i ϕ( x j t i ) i=1 j = 1... N, m 1 = 10, N = 25 10 basis functions and 25 data points. Basis function centers are plotted with circles and data

More information

Mid-Year Report. Discontinuous Galerkin Euler Equation Solver. Friday, December 14, Andrey Andreyev. Advisor: Dr.

Mid-Year Report. Discontinuous Galerkin Euler Equation Solver. Friday, December 14, Andrey Andreyev. Advisor: Dr. Mid-Year Report Discontinuous Galerkin Euler Equation Solver Friday, December 14, 2012 Andrey Andreyev Advisor: Dr. James Baeder Abstract: The focus of this effort is to produce a two dimensional inviscid,

More information

Seeking Interpretable Models for High Dimensional Data

Seeking Interpretable Models for High Dimensional Data Seeking Interpretable Models for High Dimensional Data Bin Yu Statistics Department, EECS Department University of California, Berkeley http://www.stat.berkeley.edu/~binyu Characteristics of Modern Data

More information

Reconstructing visual experiences from brain activity evoked by natural movies

Reconstructing visual experiences from brain activity evoked by natural movies Reconstructing visual experiences from brain activity evoked by natural movies Shinji Nishimoto, An T. Vu, Thomas Naselaris, Yuval Benjamini, Bin Yu, and Jack L. Gallant, Current Biology, 2011 -Yi Gao,

More information

AN INTRODUCTION TO FUZZY SETS Analysis and Design. Witold Pedrycz and Fernando Gomide

AN INTRODUCTION TO FUZZY SETS Analysis and Design. Witold Pedrycz and Fernando Gomide AN INTRODUCTION TO FUZZY SETS Analysis and Design Witold Pedrycz and Fernando Gomide A Bradford Book The MIT Press Cambridge, Massachusetts London, England Foreword - Preface Introduction xiii xxv xxi

More information

Copyright Notice. Do not remove this notice. COMMONWEALTH OF AUSTRALIA Copyright Regulations 1969 WARNING

Copyright Notice. Do not remove this notice. COMMONWEALTH OF AUSTRALIA Copyright Regulations 1969 WARNING Copyright Notice University of South Australia (UniSA) Do not remove this notice. COMMONWEALTH OF AUSTRALIA Copyright Regulations 969 WARNING This material has been produced and communicated to you by

More information

HARDWARE IMPLEMENTATION OF A RETINAL MODEL. Lina María García Holguín

HARDWARE IMPLEMENTATION OF A RETINAL MODEL. Lina María García Holguín HARDWARE IMPLEMENTATION OF A RETINAL MODEL Lina María García Holguín Thesis presented in fulfillment of the requirements for the degree of Electronics Engineering Universidad del Valle Universidad del

More information

Variational Autoencoders

Variational Autoencoders red red red red red red red red red red red red red red red red red red red red Tutorial 03/10/2016 Generative modelling Assume that the original dataset is drawn from a distribution P(X ). Attempt to

More information

Investigating topographic neural map development of the visualmay system 10, / 59

Investigating topographic neural map development of the visualmay system 10, / 59 Investigating topographic neural map development of the visual system Daniel Clark Department of Electrical Engineering May 10, 2013 Investigating topographic neural map development of the visualmay system

More information

Benchmarks Addressed. Quizzes. Strand IV, S 1-2, 1-4, 2-1, 2-2, 2-3, 3-1. Journal writing. Projects. Worksheets

Benchmarks Addressed. Quizzes. Strand IV, S 1-2, 1-4, 2-1, 2-2, 2-3, 3-1. Journal writing. Projects. Worksheets August/September The Decimal System Translating English words into Decimal Notation What is the decimal system? Str IV, S 1-2, 1-4, 2-1, 2-2, 2-3, 3-1 Estimating Decimals What is a number line? Changing

More information

JPEG compression of monochrome 2D-barcode images using DCT coefficient distributions

JPEG compression of monochrome 2D-barcode images using DCT coefficient distributions Edith Cowan University Research Online ECU Publications Pre. JPEG compression of monochrome D-barcode images using DCT coefficient distributions Keng Teong Tan Hong Kong Baptist University Douglas Chai

More information

Introduction to visual computation and the primate visual system

Introduction to visual computation and the primate visual system Introduction to visual computation and the primate visual system Problems in vision Basic facts about the visual system Mathematical models for early vision Marr s computational philosophy and proposal

More information

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science

Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2D Gabor functions and filters for image processing and computer vision Nicolai Petkov Intelligent Systems group Institute for Mathematics and Computing Science 2 Most of the images in this presentation

More information

Essential Elements Pacing Guide - Mathematics

Essential Elements Pacing Guide - Mathematics September Number and Quantity- The Real Number System EEN-RN.1. Determine the value of a quantity that is squared or cubed * previous year content previous year content Number and Quantity- Quantities

More information

Clustering Lecture 5: Mixture Model

Clustering Lecture 5: Mixture Model Clustering Lecture 5: Mixture Model Jing Gao SUNY Buffalo 1 Outline Basics Motivation, definition, evaluation Methods Partitional Hierarchical Density-based Mixture model Spectral methods Advanced topics

More information

Administrivia. Enrollment Lottery Paper Reviews (Adobe) Data passwords My office hours

Administrivia. Enrollment Lottery Paper Reviews (Adobe) Data passwords My office hours Administrivia Enrollment Lottery Paper Reviews (Adobe) Data passwords My office hours Good Cop Bad Cop Two or three ways to think about this class Computer Science Algorithms Engineering Brain Computer

More information

A Novel Information Theoretic and Bayesian Approach for fmri data Analysis

A Novel Information Theoretic and Bayesian Approach for fmri data Analysis Proceedings of SPIE Medical Imaging 23, San Diego, CA, February 23. A Novel Information Theoretic and Bayesian Approach for fmri data Analysis Chandan Reddy *a, Alejandro Terrazas b,c a Department of Computer

More information

ICA mixture models for image processing

ICA mixture models for image processing I999 6th Joint Sy~nposiurn orz Neural Computation Proceedings ICA mixture models for image processing Te-Won Lee Michael S. Lewicki The Salk Institute, CNL Carnegie Mellon University, CS & CNBC 10010 N.

More information

J. Weston, A. Gammerman, M. Stitson, V. Vapnik, V. Vovk, C. Watkins. Technical Report. February 5, 1998

J. Weston, A. Gammerman, M. Stitson, V. Vapnik, V. Vovk, C. Watkins. Technical Report. February 5, 1998 Density Estimation using Support Vector Machines J. Weston, A. Gammerman, M. Stitson, V. Vapnik, V. Vovk, C. Watkins. Technical Report CSD-TR-97-3 February 5, 998!()+, -./ 3456 Department of Computer Science

More information

For Monday. Read chapter 18, sections Homework:

For Monday. Read chapter 18, sections Homework: For Monday Read chapter 18, sections 10-12 The material in section 8 and 9 is interesting, but we won t take time to cover it this semester Homework: Chapter 18, exercise 25 a-b Program 4 Model Neuron

More information

Deep Learning Performance and Cost Evaluation

Deep Learning Performance and Cost Evaluation Micron 5210 ION Quad-Level Cell (QLC) SSDs vs 7200 RPM HDDs in Centralized NAS Storage Repositories A Technical White Paper Rene Meyer, Ph.D. AMAX Corporation Publish date: October 25, 2018 Abstract Introduction

More information

CPSC 340: Machine Learning and Data Mining. Robust Regression Fall 2015

CPSC 340: Machine Learning and Data Mining. Robust Regression Fall 2015 CPSC 340: Machine Learning and Data Mining Robust Regression Fall 2015 Admin Can you see Assignment 1 grades on UBC connect? Auditors, don t worry about it. You should already be working on Assignment

More information

Generative and discriminative classification techniques

Generative and discriminative classification techniques Generative and discriminative classification techniques Machine Learning and Category Representation 013-014 Jakob Verbeek, December 13+0, 013 Course website: http://lear.inrialpes.fr/~verbeek/mlcr.13.14

More information

Macbook Pro Schematics 13 In Retina Display Release Date

Macbook Pro Schematics 13 In Retina Display Release Date Macbook Pro Schematics 13 In Retina Display Release Date Wondering what happened to the 15in Retina MacBook Pro? Here's our New 2015 15-inch MacBook Pro with Retina display release date, specs and UK pricing.

More information

CPSC 340: Machine Learning and Data Mining. Principal Component Analysis Fall 2016

CPSC 340: Machine Learning and Data Mining. Principal Component Analysis Fall 2016 CPSC 340: Machine Learning and Data Mining Principal Component Analysis Fall 2016 A2/Midterm: Admin Grades/solutions will be posted after class. Assignment 4: Posted, due November 14. Extra office hours:

More information

Example. Section: PS 709 Examples of Calculations of Reduced Hours of Work Last Revised: February 2017 Last Reviewed: February 2017 Next Review:

Example. Section: PS 709 Examples of Calculations of Reduced Hours of Work Last Revised: February 2017 Last Reviewed: February 2017 Next Review: Following are three examples of calculations for MCP employees (undefined hours of work) and three examples for MCP office employees. Examples use the data from the table below. For your calculations use

More information

A Computational Approach To Understanding The Response Properties Of Cells In The Visual System

A Computational Approach To Understanding The Response Properties Of Cells In The Visual System A Computational Approach To Understanding The Response Properties Of Cells In The Visual System David C. Noelle Assistant Professor of Computer Science and Psychology Vanderbilt University March 3, 2004

More information

Directional Tuning in Single Unit Activity from the Monkey Motor Cortex

Directional Tuning in Single Unit Activity from the Monkey Motor Cortex Teaching Week Computational Neuroscience, Mind and Brain, 2011 Directional Tuning in Single Unit Activity from the Monkey Motor Cortex Martin Nawrot 1 and Alexa Riehle 2 Theoretical Neuroscience and Neuroinformatics,

More information

Wavelet Applications. Texture analysis&synthesis. Gloria Menegaz 1

Wavelet Applications. Texture analysis&synthesis. Gloria Menegaz 1 Wavelet Applications Texture analysis&synthesis Gloria Menegaz 1 Wavelet based IP Compression and Coding The good approximation properties of wavelets allow to represent reasonably smooth signals with

More information

OSC Ring Type Ring or Resonator type (optional) RESET Pin No Yes

OSC Ring Type Ring or Resonator type (optional) RESET Pin No Yes General Description Features est Series is a series of 3 to 340 seconds single chip high quality voice synthesizer IC which contains one 4-bit Input port (provided for est005 and above); three 4-bit I/O

More information

3 October, 2013 MVA ENS Cachan. Lecture 2: Logistic regression & intro to MIL Iasonas Kokkinos

3 October, 2013 MVA ENS Cachan. Lecture 2: Logistic regression & intro to MIL Iasonas Kokkinos Machine Learning for Computer Vision 1 3 October, 2013 MVA ENS Cachan Lecture 2: Logistic regression & intro to MIL Iasonas Kokkinos Iasonas.kokkinos@ecp.fr Department of Applied Mathematics Ecole Centrale

More information

Research on Evaluation Method of Product Style Semantics Based on Neural Network

Research on Evaluation Method of Product Style Semantics Based on Neural Network Research Journal of Applied Sciences, Engineering and Technology 6(23): 4330-4335, 2013 ISSN: 2040-7459; e-issn: 2040-7467 Maxwell Scientific Organization, 2013 Submitted: September 28, 2012 Accepted:

More information