Percolation Theory [pdf]
web.mit.edu
Percolation Theory [pdf]
1–10 of 13 posts
Re: Percolation Theory [pdf]
#2Re: Percolation Theory [pdf]
#3[0] https://www.worldscientific.com/worldscibooks/10.1142/p365#t...
Re: Percolation Theory [pdf]
#4Re: Percolation Theory [pdf]
#5A submission to 3blue1brown's SoME (summer of math explanation) competition
Re: Percolation Theory [pdf]
#6There is a basic natural log scaling rule that essentially guarantees that you will have a well-connected topology (even with random connections) as long as you ensure a minimum # of connections are assigned to each element.
The required fanout at each order of magnitude network size goes something like:
10: ~3 connections
100: ~5 connections
1,000: ~7 connections
10,000: ~10 connections
100,000: ~12 connections
1,000,000: ~14 connections
100,000,000,000: ~26 connections
I've been able to avoid a lot of complicated code by leveraging this.Re: Percolation Theory [pdf]
#7I was recently struggling with the best way to randomly construct a well-connected, recurrent topology of neurons until I encountered Percolation theory. There is a basic natural log scaling rule that essentially guarantees that you will have a well-connected topology (even with random connections) as long as you ensure a minimum # of connections are assigned to each element. The required fanout at each order of magn…
[0] https://en.wikipedia.org/wiki/Erd%C5%91s%E2%80%93R%C3%A9nyi_....
Re: Percolation Theory [pdf]
#8I was recently struggling with the best way to randomly construct a well-connected, recurrent topology of neurons until I encountered Percolation theory. There is a basic natural log scaling rule that essentially guarantees that you will have a well-connected topology (even with random connections) as long as you ensure a minimum # of connections are assigned to each element. The required fanout at each order of magn…
What do you mean by well-connected topology? If you mean that you can reach every neuron from any neuron then the number of connections you need is asymptotically n log n / 2 (not up to a constant factor or anything, just n log n / 2 on the nose, it's a sharp threshold), see [0]. In general when percolation is done on just n nodes without extra structure, it's called the Erdős–Rényi model [0], and most mathematicians…
https://en.wikipedia.org/wiki/Giant_component#Giant_componen...
Re: Percolation Theory [pdf]
#9Re: Percolation Theory [pdf]
#10Earlier quoted context omitted.
What do you mean by well-connected topology? If you mean that you can reach every neuron from any neuron then the number of connections you need is asymptotically n log n / 2 (not up to a constant factor or anything, just n log n / 2 on the nose, it's a sharp threshold), see [0]. In general when percolation is done on just n nodes without extra structure, it's called the Erdős–Rényi model [0], and most mathematicians…
I think we are on the same page. https://en.wikipedia.org/wiki/Giant_component#Giant_componen...