[computer-go] Neural networks

2009-10-14 Thread Petr Baudis
Hi! Is there some high-level reason hypothesised about why there are no successful programs using neural networks in Go? I'd also like to ask if someone has a research tip for some interesting Go sub-problem that could make for a nice beginner neural networks project. Thanks, --

Re: [computer-go] Neural networks

2009-10-14 Thread Petri Pitkanen
Neural network tend to work well in those cases where evaluation function is smooth, like backgammon. Even inbackgammon neural networks do give good results if situation has possibility of sudden equity changes like deep backgames and deep anchor games. Top backgammon programs 3-ply search on top

Re: [computer-go] Neural networks

2009-10-14 Thread Erik van der Werf
In my opinion NeuroGo was quite succesful with neural networks. Magog's main strength came from neural networks. Steenvreter uses 'neural networks' to set priors in the Monte Carlo Tree. Erik On Wed, Oct 14, 2009 at 2:26 PM, Petr Baudis pa...@ucw.cz wrote:  Hi!  Is there some high-level

Re: [computer-go] Neural networks

2009-10-14 Thread Rémi Coulom
Petr Baudis wrote: Hi! Is there some high-level reason hypothesised about why there are no successful programs using neural networks in Go? I'd also like to ask if someone has a research tip for some interesting Go sub-problem that could make for a nice beginner neural networks project.

Re: [computer-go] Re: Neural networks

2009-10-14 Thread Don Dailey
On Wed, Oct 14, 2009 at 10:21 AM, Álvaro Begué alvaro.be...@gmail.comwrote: We should let go of this idea that artificial neural networks have anything to do with the brain. ANNs are just a family of parametric functions (often with too many parameters for their own good) and associated

Re: [computer-go] Re: Neural networks

2009-10-14 Thread Hideki Kato
Álvaro Begué: 7b0793ea0910140721l2819723bl12af6c1c3dd9...@mail.gmail.com: We should let go of this idea that artificial neural networks have anything to do with the brain. ANNs are just a family of parametric functions (often with too many parameters for their own good) and associated tuning

Re: [computer-go] Neural networks

2009-10-14 Thread Heikki Levanto
On Wed, Oct 14, 2009 at 03:34:59PM +0300, Petri Pitkanen wrote: Neural network tend to work well in those cases where evaluation function is smooth, like backgammon. Even inbackgammon neural networks do give good results if situation has possibility of sudden equity changes like deep backgames

Re: [computer-go] Re: Neural networks

2009-10-14 Thread Hideki Kato
Hideki Kato: 4ad5e7f1.77%hideki_ka...@ybb.ne.jp: Álvaro Begué: 7b0793ea0910140721l2819723bl12af6c1c3dd9...@mail.gmail.com: We should let go of this idea that artificial neural networks have anything to do with the brain. ANNs are just a family of parametric functions (often with too many

Re: [computer-go] Neural networks

2009-10-14 Thread George Dahl
Neural networks are not considered obsolete by the machine learning community; in fact there is much active research on neural networks and the term is understood to be quite general. SVMs are linear classifiers for hand-engineered features. When a single layer of template-matchers isn't enough,

RE: [computer-go] Neural networks - numenta

2009-10-14 Thread David Fotland
Remi, what do you think of Numenta http://www.numenta.com/, a startup that is using feedforward/feedback networks to model learning and pattern recognition in the neocortex. Does this approach make sense or is it just startup hype?

Re: [computer-go] Neural networks - numenta

2009-10-14 Thread David Doshay
I'm not Remi, but I know a bit about Numenta. I gave a lightning talk at their workshop about a year and a half ago. A few people at Numenta are interested in using their software for Go, and I was working with one of them before my heart problems stopped that work. I do not think that

Re: [computer-go] Neural networks - numenta

2009-10-14 Thread Rémi Coulom
David Fotland wrote: Remi, what do you think of Numenta http://www.numenta.com/, a startup that is using feedforward/feedback networks to model learning and pattern recognition in the neocortex. Does this approach make sense or is it just startup hype?

Re: [computer-go] Neural networks - numenta

2009-10-14 Thread Mark Boon
Also not Remi, but... Numenta is a startup funded by Palm founder Jeff Hawkins. He started it following up on his book 'On Intelligence', which I think is a very interesting read. I'd suggest it as a reading to anyone considering applying some form of Neural simulation to Go or any other problem.

Re: [computer-go] Pattern matching

2009-10-14 Thread Mark Boon
On Sat, Oct 10, 2009 at 5:32 PM, Álvaro Begué alvaro.be...@gmail.com wrote: Are you not going to tell us what this new job is about? I almost forgot to answer this, I had no intention to sound mysterious. My job is to make autonomous avatars (also called NPCs or 'bots') for a new MMO platform

Re: [computer-go] Neural networks

2009-10-14 Thread dhillismail
[ Digression: Some ANN architectures are more biologically plausible than others. Neuromorphic Engineering is a good search term to see what's going on along those lines. (But for a beginner project, the standard multi-layer perceptron with backpropogation would still be the natural choice.)