What algorithm blows your mind? (Reddit compsci)
1–10 of 71 posts
Re: What algorithm blows your mind? (Reddit compsci)
#2Question 3 here will walk you through the proof: http://bit.ly/cQ03na
Re: What algorithm blows your mind? (Reddit compsci)
#3Re: What algorithm blows your mind? (Reddit compsci)
#4Think about it, every time you get a google map direction/route, one of them is in play.
Re: What algorithm blows your mind? (Reddit compsci)
#5In multi-robot coordination I like the free market system [ http://www.frc.ri.cmu.edu/projects/colony/architecture.shtml ]
And regarding machine learning I like neural nets (MLP), however the algorithms that currently blow my mind are convoluted neural networks (CNNs) and deep belief networks trained with auto-encoders. http://www.youtube.com/watch?v=AyzOUbkUf3M on the 21-minute mark to see it in action.
Re: What algorithm blows your mind? (Reddit compsci)
#6Re: What algorithm blows your mind? (Reddit compsci)
#7How is generation of the Mandelbrot Set not on this list? That something so simple could produce something so indescribably beautiful...
it's like a spinning rod, angle doubled and length squared each iteration, with a rod of fixed length and angle added to it each iteration (if the spinner is facing away, it gets shorter, but if towards, it gets longer). Iterate til it goes over 2. If it doesn't then it's in the Set (or maybe you need to iterate more...). [that's my current understanding]
It's pretty clear to me that I can't visualize what it will do over a few iterations (apart from simple cases) - and I sure can't see how it would produce self-similar (ie fractal) shapes. Agreed that that's amazing.