<< Chapter < Page Chapter >> Page >
Five neuron network and the given adjacency matrix

Threshold ( k )

In undirected, unweighted graphs the threshold( k ) is the minimum number of inputs a neuron needs in order to become excited

The excitation map, e(x,k)

  • let X be a subgraph in G :
    x i = 1 if v i X 0 if otherwise
  • Where x is a binary vector representing the presence (1) or absence (0) of a neuron.
    e i ( x , k ) = 1 if ( A d x ) i k 0 if otherwise
  • x is an invariant set if:
    e ( x , k ) = x

Graph theory and cell assemblies

Using tools from graph theory, we are able to link a certain class of Palm's cell assemblies, which we will call a k -assembly, to the closure of a minimal k -core. Using MATLAB, we are able to find a minimal k -core and it's closure allowing us to find a k -assembly in any given network of neurons.

k -cores

k -cores are a concept in graph theory that has been widely used and studied by many graph theorists for locating cohesive subsets in a given graph. A k -core can be defined as:

  • Given graph G , subgraph X is a k -core if every node in X has at lease k neighbors in X . A k -core can be described as minimal if no proper subset of the k -core is also a k -core.
X = { 1 , 2 , 4 } is a minimal 2-core

Algorithms for finding a k -assembly

The closure (the invariant set generated by iterating the e map) of a minimal k -core is a k -assembly

  • One type of cell assembly, we will call a k -assembly, is the closure of a minimal k -core. In order to find these k -assemblies, we needed to develop a method for finding minimal k -cores and their closures in any given network of neurons.

Finding minimal k -cores:

bintprog is a built in MATLAB function that Þnds an optimal solution to binary integer programming problems of the following form:

min x f T x
A x b
x { 0 , 1 } n

bintprog arguments: f , A , b

  • f : coefficients of the variables of the objective functions
  • A , b : Using the threshold inequality we can find A :
    A d x k x 0 ( k I - A d ) x
    bintprog minimizes f T x constrained to A x b . Because x=0 satisfies the inequality we must add an additional constraint
    x 1 + x 2 + . . . + x n 1
    A = k I - A d - 1 - 1 - 1 . . .
    b = 0 0 0 0 - 1

Algorithm examples

bintprog Example

  • Given the following graph, its corresponding adjacency matrix and threshold of k = 2 , bintprog can find a minimal 2-core:
    A d = 0 1 0 0 0 1 1 0 1 0 1 1 0 1 0 1 1 1 0 0 1 0 1 0 0 1 1 1 0 1 1 1 1 0 1 0
  • bintprog arguments:
    f = 1 1 1 1 1 1 A = 2 - 1 0 0 0 - 1 - 1 2 - 1 0 - 1 - 1 0 - 1 2 - 1 - 1 - 1 0 0 - 1 2 - 1 0 0 - 1 - 1 - 1 2 - 1 - 1 - 1 - 1 0 - 1 2 - 1 - 1 - 1 - 1 - 1 - 1 b = 0 0 0 0 0 0 - 1
  • bintprog returns a vector, x , indicating which nodes are in the minimal k -core:
    x = 1 1 0 0 0 1
  • {1,2,6} is the minimal 2-core found by bintprog
  • There are, however, many other minimal k -cores in this set of neurons such as: {3,4,5} and {2,5,6}. Our goal for the future is to find some method that enables bintprog to find all of the minimal k -cores in a given network allowing us to find all of the k -assemblies in that network.

Closure example

We will use the same graph as the previous bintprog example:

  1. Create a subset, x . We will use the minimal 2-core found by bintprog :
  2. Find e 1 ( x , k ) :
    0 1 0 0 0 1 1 0 1 0 1 1 0 1 0 1 1 1 0 0 1 0 1 0 0 1 1 1 0 1 1 1 1 0 1 0 1 1 0 0 0 1 = 2 2 2 0 2 2 e 1 ( x , k ) = 1 1 1 0 1 1
    Because e 1 x we must apply e i ( x , k ) again:
    0 1 0 0 0 1 1 0 1 0 1 1 0 1 0 1 1 1 0 0 1 0 1 0 0 1 1 1 0 1 1 1 1 0 1 0 1 1 1 0 1 1 = 2 4 3 2 3 4 e 2 ( x , k ) = 1 1 1 1 1 1
    Even though e 2 ( x , k ) x , we can see that because the entire graph is excited, it will keep exciting itself, thus generating an invariant set giving us a k -assembly:
    x = 1 1 1 1 1 1

Finding k -assemblies

bintprog found a minimal 3-core { 5 , 6 , 7 , 15 } in the 15 node graph and then finds that minimal 3-core's closure (a k -assembly).

Future work for finding cell assemblies

In order to find more cell assemblies in any given network of neurons, we have come up with a few methods of finding other minimal k -cores in a network of neurons:

  • Alter the arguments of bintprog
    • We have altered with the coefficients of the objective function where we would increase the value for nodes already found in a previous minimal k -core. This method has, however, proved to be exhaustive in that we must increase the value of the objective coefficients with all possible combinations of nodes of the previously found minimal k -cores to ensure that all the minimal k -cores of any given graph are located.
  • Translate other graph theoretical algorithms to fit minimal k -cores
    • We hope to use algorithms in graph theory for finding other types of subgraphs, such as a maximal clique, and translate them to fit our problem of finding all of the minimal k -cores of any given graph.
  • Use probability in random graphs
    • Using probability may allow us to figure out how many minimal k -cores a given graph may support as well as where they might be, allowing us to constrain other exhaustive methods of finding minimal k -cores.

Conclusion

This module has shown how to translate the problem of finding cell assemblies in a network of neurons into a binary integer programming problem. It has shown a clear connection between cell assemblies and graph theory and also how to find at least one cell assembly in any given network of neurons. Future work for this problem includes how to find more cell assemblies in a network of neurons.

Acknowledgements

I would like to give a big thanks to Dr. Steve Cox and Dr. Illya Hicks for guiding us through our project of finding cell assemblies. Also thanks to the REU students, Karina Aliaga, Shaunak Das, and Diane Taylor who I collaborated with on this project. Lastly I would like to thank NSF and the VIGRE program for funding me under the NSF VIGRE Grant DMS-0240058.

References

1. Hebb, Donald. (1949) The Organization of Behavior. (New York: John Wiley).

2. Palm, Gunther. (1981) Towards a Theory of Cell Assemblies. Biological Cybernetics 39, pp. 181-194.

Questions & Answers

it is the relatively stable flow of income
Chidubem Reply
what is circular flow of income
Divine Reply
branches of macroeconomics
SHEDRACK Reply
what is Flexible exchang rate?
poudel Reply
is gdp a reliable measurement of wealth
Atega Reply
introduction to econometrics
Husseini Reply
Hi
mostafa
hi
LEMLEM
hello
Sammol
hi
Mahesh
bi
Ruqayat
hi
Ruqayat
Hi fellas
Nyawa
hey
Sammol
hi
God
hello
Jahara
Good morning
Jorge
hi
abubakar
hi
Nmesoma
hi
Mahesh
Hi
Tom
Why is unemployment rate never zero at full employment?
Priyanka Reply
bcoz of existence of frictional unemployment in our economy.
Umashankar
what is flexible exchang rate?
poudel
due to existence of the pple with disabilities
Abdulraufu
the demand of a good rises, causing the demand for another good to fall
Rushawn Reply
is it possible to leave every good at the same level
Joseph
I don't think so. because check it, if the demand for chicken increases, people will no longer consume fish like they used to causing a fall in the demand for fish
Anuolu
is not really possible to let the value of a goods to be same at the same time.....
Salome
Suppose the inflation rate is 6%, does it mean that all the goods you purchase will cost 6% more than previous year? Provide with reasoning.
Geetha Reply
Not necessarily. To measure the inflation rate economists normally use an averaged price index of a basket of certain goods. So if you purchase goods included in the basket, you will notice that you pay 6% more, otherwise not necessarily.
Waeth
discus major problems of macroeconomics
Alii Reply
what is the problem of macroeconomics
Yoal
Economic growth Stable prices and low unemployment
Ephraim
explain inflationcause and itis degre
Miresa Reply
what is inflation
Getu
increase in general price levels
WEETO
Good day How do I calculate this question: C= 100+5yd G= 2000 T= 2000 I(planned)=200. Suppose the actual output is 3000. What is the level of planned expenditures at this level of output?
Chisomo Reply
how to calculate actual output?
Chisomo
how to calculate the equilibrium income
Beshir
Criteria for determining money supply
Thapase Reply
who we can define macroeconomics in one line
Muhammad
Aggregate demand
Mohammed
C=k100 +9y and i=k50.calculate the equilibrium level of output
Mercy Reply
Hi
Isiaka
Hi
Geli
hy
Man
👋
Bahunda
hy how are you?
Man
ys
Amisha
how are you guys
Sekou
f9 guys
Amisha
how are you guys
Sekou
ys am also fine
Amisha
fine and you guys
Geli
from Nepal
Amisha
nawalparasi district from belatari
Amisha
nd u
Amisha
I am Camara from Guinea west Africa... happy to meet you guys here
Sekou
ma management ho
Amisha
ahile becheclor ho
Amisha
hjr ktm bta ho ani k kaam grnu hunxa tw
Amisha
belatari
Amisha
1st year ho
Amisha
nd u
Amisha
ahh
Amisha
kaha biratnagar
Amisha
ys
Amisha
kina k vo
Amisha
money as unit of account means what?
Kalombe
A unit of account is something that can be used to value goods and services and make calculations
Jim
all of you please speak in English I can't understand you're language
Muhammad
I want to know how can we define macroeconomics in one line
Muhammad
it must be .9 or 0.9 no Mpc is greater than 1 Y=100+.9Y+50 Y-.9Y=150 0.1Y/0.1=150/0.1 Y=1500
Kalombe
Mercy is it clear?😋
Kalombe
hi can someone help me on this question If a negative shocks shifts the IS curve to the left, what type of policy do you suggest so as to stabilize the level of output? discuss your answer using appropriate graph.
Galge Reply
if interest rate is increased this will will reduce the level of income shifting the curve to the left ◀️
Kalombe
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, The art of the pfug. OpenStax CNX. Jun 05, 2013 Download for free at http://cnx.org/content/col10523/1.34
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'The art of the pfug' conversation and receive update notifications?

Ask