Edit History

Wiki » History » Version 11

Ramon Martinez, 15 Aug 2014 04:34

1 2 Ramon Martinez
##  Network models of V1
2 1 Padraig Gleeson
3 1 Padraig Gleeson
This project will be used to test implementations in PyNN (and eventually NeuroML) of published models of primary visual cortex (V1) based on spiking point neurons.
4 1 Padraig Gleeson
5 1 Padraig Gleeson
An initial focus will be on pubmed:14614078, but other models investigated will include pubmed:19477158 and pubmed:22681694.
6 1 Padraig Gleeson
7 9 Andrew Davison
This project is part of the [INCF participation in the Google Summer of Code 2014](http://incf.org/gsoc/2014).
8 2 Ramon Martinez
9 2 Ramon Martinez
10 2 Ramon Martinez
### Troyer Model
11 10 Andrew Davison
Here I will describe briefly the implementation of pubmed:9671678. 
12 2 Ramon Martinez
13 2 Ramon Martinez
In order to run this model is necessary to first install [git](http://git-scm.com/) and [PyNN](http://neuralensemble.org/PyNN/) and the appropriate simulator.
14 2 Ramon Martinez
15 3 Ramon Martinez
After that you can clone directly from git using:
16 3 Ramon Martinez
17 3 Ramon Martinez
~~~
18 3 Ramon Martinez
git clone https://github.com/OpenSourceBrain/V1NetworkModels.git
19 3 Ramon Martinez
~~~
20 3 Ramon Martinez
21 11 Ramon Martinez
As the project stands at this moment the workflow can be described in two steps:  first there are two scripts that implement the spatio-temporal filter in the retina and produce the spike-trains for each cell in the Lateral Geniculate Nucelus (LGN) and stores them for further use.  Second, there is a file that loads those spike-trains and runs the simulation of the cortical networks in PyNN using them. The first task is executed by two scripts `produce_lgn_spikes_on_cells.py` and ` produce_lgn_spikes_off_cells.py ` which generates pickled files in the folder './data' with the spike trains and positions for a given contrast that is selected in the parameters of the script. After we have run the file to produce the spikes with a given contrast (which can be adjusted in the scripts mentioned above) we can run the main script `full_model.py` with the same contrast in order to run the complete model. At the beginning of this files we find the following parameters controlling the simulation: 
22 1 Padraig Gleeson
23 11 Ramon Martinez
~~~
24 11 Ramon Martinez
factor = 1.0  # Reduction factor
25 11 Ramon Martinez
Nside_exc = int(factor * Nside_exc)
26 11 Ramon Martinez
Nside_inh = int(factor * Nside_inh)
27 1 Padraig Gleeson
28 11 Ramon Martinez
Ncell_lgn = Nside_lgn * Nside_lgn
29 11 Ramon Martinez
Ncell_exc = Nside_exc ** 2
30 11 Ramon Martinez
Ncell_inh = Nside_inh ** 2
31 11 Ramon Martinez
32 11 Ramon Martinez
N_lgn_layers = 1
33 11 Ramon Martinez
34 11 Ramon Martinez
## Main connections
35 11 Ramon Martinez
thalamo_cortical_connections = True # If True create connections from the thalamus to the cortex
36 11 Ramon Martinez
feed_forward_inhibition = True # If True add feed-forward inhibition ( i -> e )
37 11 Ramon Martinez
cortical_excitatory_feedback = True # If True add cortical excitatory feedback (e -> e) and ( e -> i )
38 11 Ramon Martinez
background_noise = True  # If True add cortical noise
39 11 Ramon Martinez
correlated_noise = False  # Makes the noise coorelated
40 11 Ramon Martinez
41 11 Ramon Martinez
# Save
42 11 Ramon Martinez
save_voltage_and_conductances = False
43 11 Ramon Martinez
save_orientation_response = False
44 11 Ramon Martinez
45 11 Ramon Martinez
# Plot
46 11 Ramon Martinez
plot_conductance_analysis = True
47 11 Ramon Martinez
plot_spike_analysis = True
48 11 Ramon Martinez
plot_orientation_analysis = True
49 11 Ramon Martinez
~~~
50 11 Ramon Martinez
51 11 Ramon Martinez
The factor parameter allows us to reduce the overall size of the cortical network by a given percentage (the square of it). We can also choose to use between one and four layers of the LGN in case we want with the parameter N_lgn_layers. Finally we can remove the connections and noise between the different networks with the bolean parameters bellow. We also have the settings here to plot relevant analysis of the data and save the data produced by the simulation here.
52 11 Ramon Martinez
53 11 Ramon Martinez
After we have run the model with a couple of contrasts and save them in the 'output_data' we can run the script `compare_contrasts.py` in order to see if contrast invariant orientation tuning holds for our data.  
54 11 Ramon Martinez
55 11 Ramon Martinez
As the model stands, spike-trains and orientation curves are already given for four contrasts and the model can be tested right away.
56 11 Ramon Martinez
 
57 11 Ramon Martinez
Here bellow I describe in more detail all of the parts of the model
58 4 Ramon Martinez
#### LGN - spikes
59 4 Ramon Martinez
60 4 Ramon Martinez
In brief, the Retina and the Thalamus part of the model can be represented by a spatio-temporal filter that, when convolved with the stimuli, will produce the firing rate of a given LGN cell. After that, we can use a non-homogeneous Poisson process to produce the corresponding spikes for each cell. We describe this in detail bellow.
61 4 Ramon Martinez
62 5 Ramon Martinez
###### Spatio-Temporal Receptive Field (STRF)
63 4 Ramon Martinez
64 5 Ramon Martinez
The file `kernel_functions.py` contains the code for creating the  STRF.  The spatial part of the kernel possess a **center-surround** architecture which is model as a different of Gaussians. The temporal part of the receptive field has a **biphasic** structure, we use the implementation describe in Cai et al (1998). The details of the implementation are described in detail in the companion blog of this project  [(link)](http://neuralensemble.blogspot.fr/2014/06/gsoc-open-source-brain-retinal-filter-i.html). Down here we present a kernel produce with this classes. The time here runs from left to right and from up to down as usual text, so we can see how the spatial components of the filter change in time with this series of two dimensional maps.
65 1 Padraig Gleeson
66 5 Ramon Martinez
![STRF](http://www.opensourcebrain.org/attachments/download/205/kernel.png)
67 1 Padraig Gleeson
68 5 Ramon Martinez
We also include a small script `center_surround_plot.py` that can be used to visualize the spatial component of the STRF and received immediate feedback on how the overall pattern changes when the parameters and resolutions are changed. 
69 5 Ramon Martinez
70 5 Ramon Martinez
###### Stimuli 
71 5 Ramon Martinez
The file `stimuli_functions.py` contains the code for creating the stimuli. In particular we used the implementation of a **full field sinusoidal grating** with the parameters described in the paper. Down here we show an example of the stimuli at a particular point in time for illustration purposes:
72 5 Ramon Martinez
73 5 Ramon Martinez
![stimuli](http://www.opensourcebrain.org/attachments/download/206/sinus_grating.png)
74 5 Ramon Martinez
75 5 Ramon Martinez
Here we also included a small script `sine_grating_plot.py` to visualize the sine grating at a particular point in time.
76 5 Ramon Martinez
77 5 Ramon Martinez
###### Convolution 
78 5 Ramon Martinez
79 6 Ramon Martinez
After we have the stimuli and the STRF we can use the **convolution** function defined in the file `analysis_functions.py` to calculate the response of LGN' neurons. The details of how the the convolution is implemented is described in the detail in the following entry of the blog [(link)](http://neuralensemble.blogspot.fr/2014/06/gsoc-open-source-brain-retinal-filter-ii.html). With this in our hand and using the parameters described in the paper we can already reproduce the first plot in Troyer's paper.  The file `lgn_firing_rate_troyer_plot1.py` in the repository does this automatically for us and give us the next plot:
80 1 Padraig Gleeson
81 6 Ramon Martinez
![troyer_plot](http://www.opensourcebrain.org/attachments/download/207/troyer_plot1a.png)
82 1 Padraig Gleeson
83 6 Ramon Martinez
Here we can see the firing rate for an on and for an off cell subjected to the same stimuli. Note that they are off-phase and also the contrast dependent response. The responses are rectified after back ground noise was added. 
84 6 Ramon Martinez
85 6 Ramon Martinez
###### Producing Spikes
86 6 Ramon Martinez
87 6 Ramon Martinez
After we have the firing rate of a neuron we can use the produce_spikes functions in the file `analysis_functions.py`. This functions takes the firing rate and using non-homogeneous Poisson process outputs an array with the spikes times.  We provide one file `produce_lgn_spikes_one.py` for testing variations of parameters and as an example showcase.
88 6 Ramon Martinez
89 6 Ramon Martinez
![example](http://www.opensourcebrain.org/attachments/download/208/spikes_example.png)
90 6 Ramon Martinez
91 6 Ramon Martinez
92 6 Ramon Martinez
###### Storing Spikes
93 7 Ramon Martinez
Now we have the complete mechanism of spike creation. In the file `produce_lgn_spikes.py`. This file creates a grid of positions (This should correspond to the grid of LGN cells that we are going to use in PyNN) and produces the list of spikes associated with them as well as the positions. The particular stoage format that we are using is `cPickled`. 
94 6 Ramon Martinez
95 6 Ramon Martinez
#### LGN - Network