Loading web-font TeX/Math/Italic

Multi-stage ORGaNICs: A Hierarchical Recurrent Neural Circuit Model

The visual cortex is known for its modular and hierarchical structure, with feedback connections between brain areas that modulate functions like communication and normalization. To account for these reciprocal feedback connections, we introduce the Multi-stage ORGaNICs (Optimized Recurrent Generative Networks with Inhibitory Control) model, a hierarchical recurrent circuit model with feedback from higher cortical areas (e.g., V4) to lower cortical areas (e.g., V1).

Model Architecture

The architecture of the Multi-stage ORGaNICs model is illustrated in the figure below:

Each region in the model consists of three neural populations:

  1. Principal excitatory neurons y\mathbf{y}
  2. Modulatory inhibitory neurons a\mathbf{a}
  3. Modulatory excitatory neurons u\mathbf{u}

The subscripts 1 and 2 denote the layer number or hierarchy in the model.

Dynamics of Principal Excitatory Neurons

The dynamics of the principal excitatory neuron y1\mathbf{y}_1 in the first layer (V1) is governed by the following equation:

\begin{align*} \tau_{y_1}\frac{\mathrm{d}\mathbf{y}_1}{\mathrm{d} t } = -\mathbf{y}_1 + \left ( \frac{\beta_1^{+}}{1+\beta_1^{+}} \right ) \cdot \mathbf{z}_1 + \left( \frac{1}{1+\mathbf{a}_1^{+} } \right ) \left( \mathbf{W}_{11} \sqrt{ \mathbf{y}_1^+} + \left (\frac{\gamma_4^{+}}{1+\gamma_4^{+}}\right ) \cdot \mathbf{W}_{41} \sqrt{ \mathbf{y}_4^+} \right) \end{align*}

where:

  • y1\mathbf{y}_1 and y4\mathbf{y}_4 are the membrane potentials of neurons in V1 and V4, respectively.
  • z1\mathbf{z}_1 is the input drive from the preceding cortical area (LGN).
  • β\beta and γ\gamma are tuning parameters that modulate the input and feedback drives, respectively.
  • W11\mathbf{W}_{11} and W41\mathbf{W}_{41} are the recurrent and feedback weight matrices, respectively.
  • a1\mathbf{a}_1 is the modulatory inhibitory neuron population that dynamically normalizes the recurrent and feedback drives.

Normalization and Modulatory Neurons

When β\beta and γ\gamma are set to unity and W11\mathbf{W}_{11} is an identity matrix, the y1\mathbf{y}_1 neurons in V1 follow the normalization equation exactly:

y12=z12σ2+N1z12 \lfloor \mathbf{y}_1 \rfloor^2 = \frac{\lfloor \mathbf{z}_1 \rfloor^2}{\sigma^2 + \mathbf{N}_{1} \lfloor \mathbf{z}_1 \rfloor^2}

This normalization is achieved dynamically by the modulatory neurons a1\mathbf{a}_1 and u1\mathbf{u}_1, whose dynamics are governed by:

\begin{align*} \tau_{a_1}\frac{\mathrm{d}\mathbf{a}_1}{\mathrm{d}t} &= -\mathbf{a}_1 + + \left (\frac{g_1^{+}}{1+g_1^{+}}\right ) \frac{\mathbf{W}_{41} \sqrt{ \mathbf{y}_4^+}}{\sqrt{ \mathbf{y}_1^+}} + (1 + \mathbf{a}_1)\circ \mathbf{u}_1^{+} + \alpha_1 \frac{\mathrm{d}\mathbf{u}_1}{\mathrm{d}t} \\ \tau_{u_1}\frac{\mathrm{d}\mathbf{u}_1}{\mathrm{d}t} &= -\mathbf{u}_1 + \left(\frac{b_1^{+}\sigma}{1+b_1^{+}}\right)^2 + \mathbf{N}_{1} \left ( \mathbf{y}_1 ^{+} \circ \mathbf{u}_1^{+2} \right ) \end{align*}

Both modulatory neurons have an input term and a recurrent term. An increase in y1\mathbf{y}_1 leads to an increase in u1\mathbf{u}_1, which in turn increases a1\mathbf{a}_1. The increased a1\mathbf{a}_1 then decreases y1\mathbf{y}_1, achieving normalization.

Conclusion

The Multi-stage ORGaNICs model provides a powerful framework for studying the modular and hierarchical structure of the visual cortex, incorporating feedback connections and dynamic normalization. By capturing the complex interactions between cortical areas, this model offers insights into the mechanisms underlying visual processing and communication in the brain.