Bruno Olshausen
   HOME

TheInfoList



OR:

Bruno Adolphus Olshausen is an American neuroscientist and professor at the
University of California, Berkeley The University of California, Berkeley (UC Berkeley, Berkeley, Cal, or California), is a Public university, public Land-grant university, land-grant research university in Berkeley, California, United States. Founded in 1868 and named after t ...
, known for his work on
computational neuroscience Computational neuroscience (also known as theoretical neuroscience or mathematical neuroscience) is a branch of  neuroscience which employs mathematics, computer science, theoretical analysis and abstractions of the brain to understand th ...
,
vision science Vision science is the scientific study of visual perception. Researchers in vision science can be called vision scientists, especially if their research spans some of the science's many disciplines. Vision science encompasses all studies of vision ...
, and
sparse coding Neural coding (or neural representation) is a neuroscience field concerned with characterising the hypothetical relationship between the Stimulus (physiology), stimulus and the neuronal responses, and the relationship among the Electrophysiology, e ...
. He currently serves as a Professor in the Helen Wills Neuroscience Institute and the UC Berkeley School of Optometry, with an affiliated appointment in Electrical Engineering and Computer Sciences. He is also the Director of the Redwood Center for Theoretical Neuroscience at UC Berkeley.


Career

Olshausen received his B.S. and M.S. degrees in
Electrical Engineering Electrical engineering is an engineering discipline concerned with the study, design, and application of equipment, devices, and systems that use electricity, electronics, and electromagnetism. It emerged as an identifiable occupation in the l ...
from
Stanford University Leland Stanford Junior University, commonly referred to as Stanford University, is a Private university, private research university in Stanford, California, United States. It was founded in 1885 by railroad magnate Leland Stanford (the eighth ...
in 1986 and 1987 respectively. He earned his Ph.D. in
Computation and Neural Systems The Computation and Neural Systems (CNS) program was established at the California Institute of Technology in 1986 with the goal of training PhD students interested in exploring the relationship between the structure of neuron-like circuits/network ...
from the
California Institute of Technology The California Institute of Technology (branded as Caltech) is a private research university in Pasadena, California, United States. The university is responsible for many modern scientific advancements and is among a small group of institutes ...
in 1994. After completing his doctoral studies, he held postdoctoral positions at Department of Psychology,
Cornell University Cornell University is a Private university, private Ivy League research university based in Ithaca, New York, United States. The university was co-founded by American philanthropist Ezra Cornell and historian and educator Andrew Dickson W ...
and Center for Biological and Computational Learning,
Massachusetts Institute of Technology The Massachusetts Institute of Technology (MIT) is a Private university, private research university in Cambridge, Massachusetts, United States. Established in 1861, MIT has played a significant role in the development of many areas of moder ...
. Olshausen has served in several editorial and advisory roles. In 2009, he was awarded Fellowship of
Wissenschaftskolleg zu Berlin The Institute for Advanced Study in Berlin () is an interdisciplinary institute founded in 1981 in Grunewald, Berlin, Germany, dedicated to research projects in the natural and social sciences. It is modeled after the original IAS in Princeto ...
and Fellowship of
Canadian Institute for Advanced Research The Canadian Institute for Advanced Research (CIFAR) is a Canadian-based global research organization that brings together teams of top researchers from around the world to address important and complex questions. It was founded in 1982 and is su ...
, Neural Computation and Adaptive Perception program. His academic appointments include: * Assistant Professor (1996-2001), Department of Psychology and Center for Neuroscience,
University of California, Davis The University of California, Davis (UC Davis, UCD, or Davis) is a Public university, public Land-grant university, land-grant research university in Davis, California, United States. It is the northernmost of the ten campuses of the University ...
* Associate Professor (2001-2005), Department of Psychology and Center for Neuroscience, UC Davis * Associate Professor (2005-2010), Helen Wills Neuroscience Institute and School of Optometry,
UC Berkeley The University of California, Berkeley (UC Berkeley, Berkeley, Cal, or California), is a public land-grant research university in Berkeley, California, United States. Founded in 1868 and named after the Anglo-Irish philosopher George Berkele ...
* Professor (2010–present), Helen Wills Neuroscience Institute and School of Optometry, UC Berkeley


Research

Olshausen's research focuses on understanding the information processing strategies employed by the visual system for tasks such as object recognition and scene analysis. His approach combines studying neural response properties with mathematical modeling to develop functional theories of vision. This work aims to both advance understanding of brain function and develop new algorithms for image analysis based on biological principles. He has also contributed to technological applications, including image and signal processing, alternatives to
backpropagation In machine learning, backpropagation is a gradient computation method commonly used for training a neural network to compute its parameter updates. It is an efficient application of the chain rule to neural networks. Backpropagation computes th ...
for
unsupervised learning Unsupervised learning is a framework in machine learning where, in contrast to supervised learning, algorithms learn patterns exclusively from unlabeled data. Other frameworks in the spectrum of supervisions include weak- or semi-supervision, wh ...
, memory storage and computation, analog data compression systems, etc.


Neural coding

One of Olshausen's most significant contributions is demonstrating how the principle of sparse coding can explain response properties of neurons in visual cortex. His 1996 paper in ''Nature'' with David J. Field showed how simple cells in the V1 cortex
receptive field The receptive field, or sensory space, is a delimited medium where some physiological stimuli can evoke a sensory neuronal response in specific organisms. Complexity of the receptive field ranges from the unidimensional chemical structure of od ...
properties could emerge from learning a sparse code for natural images. This paper is based on two previous reports that gave additional technical details. The paper argued that simple cells have Gabor-like, localized, oriented, and bandpass receptive fields. Previous methods, such as generalized Hebbian algorithm, obtains Fourier-like receptive fields that are not localized or oriented. But with sparse coding, such receptive fields do emerge. Specifically, consider an image I and some receptive fields \phi_1, \dots, \phi_m. An image can be approximately represented as a linear sum of the receptive fields: I \approx \sum_i a_i \phi_i . If so, then the image can be coded as (a_1, \dots, a_m), a code which may have better properties than directly coding for the pixel values of the image. The algorithm proceeds as follows: * Initialize \sigma_i = 1 for all i, initialize \lambda to a good value. * Choose a bell-shaped function S(x). Examples include S(x) = , x, , \ln(1 + x^2), -e^ * Loop ** Sample a batch of images I. *** For each image I in the batch, solve for the coefficients a(I) = (a_1(I), a_2(I), \dots) that minimize the loss function L(a) := \, I - \sum_i a_i \phi_i \, ^2 + \lambda \sum_i S(a_i/ \sigma_i) *** Define the reconstructed image \hat I(I) := \sum_i a_i(I) \phi_i . ** Update each feature \phi_i by Hebbian learning: \phi_i \leftarrow \phi_i + \eta E _i (I - \hat I). Here, \eta is the learning rate and the expectation is over all images I in the batch. ** Update each \sigma_i^2 by \sigma_i^2 \leftarrow E _i^2 . Adjust learning rate. The key part of the algorithm is the loss function L(a) := \, I - \sum_i a_i \phi_i \, ^2 + \lambda \sum_i S(a_i/ \sigma_i) where the first term is image reconstruction loss, and the second term is the sparsity loss. Minimizing the first term leads to accurate image reconstruction, and minimizing the second term leads to sparse linear coefficients, that is, a vector (a_1, \dots, a_m) with many almost-zero entries. The hyperparameter \lambda balances the importance of image reconstruction vs sparsity. Based on the 1996 paper, he worked out a theory that the
Gabor filter In image processing, a Gabor filter, named after Dennis Gabor, who first proposed it as a 1D filter. The Gabor filter was first generalized to 2D by Gösta Granlund, by adding a reference direction. The Gabor filter is a linear filter used for ...
s appearing in the V1 cortex performs sparse coding with overcomplete basis set, such that it is optimal for images occurring in the
natural habitat In ecology, habitat refers to the array of resources, biotic factors that are present in an area, such as to support the survival and reproduction of a particular species. A species' habitat can be seen as the physical manifestation of its ...
of humans.


References


External links


Homepage at Redwood Center for Theoretical Neuroscience

Google Scholar profile
{{DEFAULTSORT:Olshausen, Bruno American neuroscientists University of California, Berkeley faculty Stanford University alumni California Institute of Technology alumni American vision scientists Computational neuroscience Living people Year of birth missing (living people)