TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Percolation Theory [pdf]

68 pointsby mindcrime2 months ago

6 comments

nighthawk4542 months ago
This was a great YouTube video on the subject: <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=a-767WnbaCQ" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=a-767WnbaCQ</a><p>A submission to 3blue1brown&#x27;s SoME (summer of math explanation) competition
bob10292 months ago
I was recently struggling with the best way to randomly construct a well-connected, recurrent topology of neurons until I encountered Percolation theory.<p>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.<p>The required fanout at each order of magnitude network size goes something like:<p><pre><code> 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 </code></pre> I&#x27;ve been able to avoid a lot of complicated code by leveraging this.
评论 #43337080 未加载
abetusk2 months ago
Christensen is one of the authors of &quot;Complexity and Criticality&quot;, which I highly recommend to anyone interested in percolation theory, the Ising model, self organized criticality and other models [0].<p>[0] <a href="https:&#x2F;&#x2F;www.worldscientific.com&#x2F;worldscibooks&#x2F;10.1142&#x2F;p365#t=aboutBook" rel="nofollow">https:&#x2F;&#x2F;www.worldscientific.com&#x2F;worldscibooks&#x2F;10.1142&#x2F;p365#t...</a>
user0702232 months ago
Awesome primer on percolation <a href="https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=a-767WnbaCQ" rel="nofollow">https:&#x2F;&#x2F;www.youtube.com&#x2F;watch?v=a-767WnbaCQ</a>
esafak2 months ago
Relevant to the study of phase transitions in machine learning; e.g., <a href="https:&#x2F;&#x2F;openreview.net&#x2F;forum?id=0pLCDJVVRD" rel="nofollow">https:&#x2F;&#x2F;openreview.net&#x2F;forum?id=0pLCDJVVRD</a>
评论 #43343468 未加载
physicsguy2 months ago
I loved studying this stuff at undergrad. Was one of my favourite courses.