Generation of stable heading representations in diverse visual scenes (Kim et al 2019)

 Download zip file 
Help downloading and running models
Accession:261585
"Many animals rely on an internal heading representation when navigating in varied environments. How this representation is linked to the sensory cues that define different surroundings is unclear. In the fly brain, heading is represented by ‘compass’ neurons that innervate a ring-shaped structure known as the ellipsoid body. Each compass neuron receives inputs from ‘ring’ neurons that are selective for particular visual features; this combination provides an ideal substrate for the extraction of directional information from a visual scene. Here we combine two-photon calcium imaging and optogenetics in tethered flying flies with circuit modelling, and show how the correlated activity of compass and visual neurons drives plasticity, which flexibly transforms two-dimensional visual cues into a stable heading representation. ... " See the supplementary information for model details.
Reference:
1 . Kim SS, Hermundstad AM, Romani S, Abbott LF, Jayaraman V (2019) Generation of stable heading representations in diverse visual scenes. Nature 576:126-131 [PubMed]
Model Information (Click on a link to find other models with that property)
Model Type: Connectionist Network;
Brain Region(s)/Organism: Drosophila;
Cell Type(s): Abstract rate-based neuron;
Channel(s):
Gap Junctions:
Receptor(s):
Gene(s):
Transmitter(s):
Simulation Environment: MATLAB;
Model Concept(s): Spatial Navigation; Synaptic Plasticity; Hebbian plasticity; Attractor Neural Network;
Implementer(s): Kim, Sung Soo [sungsoo at ucsb.edu];
%%
% Conversion of continuous parameters into discrete parameters
% and check the stability of parameters
%
% See the Supplimentary Materials of Kim et al. 2017 Science paper for the
% equation numbers cited in this script.


%% Conversion to discrete space
m = n_wedge_neurons/2/pi*bump_width; % Number of active wedges

c2d_scalar = 2*pi/n_wedge_neurons;
D = D_cont  /  c2d_scalar^2;
alpha_ = (sin(pi/(m-0.5+2))*2)^2*D+1; %-0.5 is to ensure that the m is between m-0.5 and m+0.5
beta_discrete = beta_cont  *  c2d_scalar;


% % %% Parameters used in the paper (continuous system)
% D_cont = 0.1;
% beta_cont = 20;
% D = D_cont  /  c2d_scalar^2;
% alpha = 3;
% beta = beta_cont *  c2d_scalar;



%% Discrete system solution
omega = asin( sqrt((alpha_-1)/D) / 2 ) *2;           % eq.14
M_range = [2*pi/omega - 2,  2*pi/omega - 1];        % eq 18
M = ceil(M_range(1));                               % discrete variable
phi = atan( sin( (M+1)*omega )  /(  cos( (M+1)*omega ) - 1    ) ); % eq 19
tmp = (1-alpha_)*sin(phi) + beta_discrete*(  sin(omega)*cos(phi)/(1-cos(omega)) + (M+1)*sin(phi) );
beta_min =  (alpha_-1)*sin(phi)  / (  sin(omega)*cos(phi)/(1-cos(omega)) + (M+1)*sin(phi) );
beta_min_cont = beta_min / c2d_scalar;
A = 1/tmp;                                          % eq 21 : Amplitude
S = A* (   sin(omega)*cos(phi)/(1-cos(omega)) + (M+1)*sin(phi)   ); % eq 20 : Total activity

disp('=================================');
if beta_cont < beta_min_cont
    disp(['beta_cont must be at least ' num2str(beta_min_cont)]);
    error('beta_cont is too small');
end


%% check the condition
clear asrt;
tol = 0.0000000001;
asrt(1) = abs(2*sin(omega/2) - sqrt((alpha_-1)/D)) < tol;       % eq 14
asrt(end+1) = abs(A*(alpha_-1)*sin(phi) - (beta_discrete*S-1))  < tol;       % eq 15 % This is not right... 
asrt(end+1) = D*A*(sin(omega-phi) + sin(phi)) - (beta_discrete*S-1) < 0;    % eq 16
asrt(end+1) = abs(sin( (M+1)*omega - phi) + sin(phi)) < tol;       % eq 17

%% condition for the solution to exist
tmp1 = 2*(1-cos(2*pi/n_wedge_neurons));
tmp2 = (alpha_-1)/D;
asrt(end+1) = tmp1<tmp2;
asrt(end+1) = tmp2<4;
asrt(end+1) = A>0;

if sum(asrt)==numel(asrt)
    disp('Stable condition for the ring attractor was confirmed');
else
    disp('NOT STABLE');
end


 


Loading data, please wait...