This video (series) provides a beautiful introduction to neural networks:
Neural networks (NN) explained
Moderator: Ras
-
- Posts: 349
- Joined: Sat Aug 06, 2016 8:31 pm
- Location: United States
-
- Posts: 769
- Joined: Fri Jan 04, 2013 4:55 pm
- Location: Nice
Re: Neural networks (NN) explained
Thanks for the link!
And soon , RMzero
Cool for A V D
And soon , RMzero

Cool for A V D

-
- Posts: 7241
- Joined: Mon May 27, 2013 10:31 am
Re: Neural networks (NN) explained
If you want to follow the Alpha zero approach you can only reuse the move generator and the user interface. Search need to be replaced and evaluation code is not used. Maybe board representation need to be optimized too. Perhaps using only bit boards is good enough.
A lot of work. Also complicated stuff. Hi hi hi . I'm getting mad. The time I'm finished they have invented something much and much better.
But isn't that with all software. It only lasts a few years and then it's totally out of date.
A lot of work. Also complicated stuff. Hi hi hi . I'm getting mad. The time I'm finished they have invented something much and much better.
But isn't that with all software. It only lasts a few years and then it's totally out of date.
-
- Posts: 273
- Joined: Wed Aug 24, 2016 9:49 pm
Re: Neural networks (NN) explained
True. I think the speed of the moveGenerator and the underlying board representation isn't that important when you are "bottlenecked" by the NN (in terms of speed) 

-
- Posts: 7241
- Joined: Mon May 27, 2013 10:31 am
Re: Neural networks (NN) explained
My move generator also sorts the moves. But that makes no sense anymore.
Evaluating a connection in a neural network is most expensive operation. Can't do much about that to speed it up. Maybe removing redundant nodes. Weight decay.
Evaluating a connection in a neural network is most expensive operation. Can't do much about that to speed it up. Maybe removing redundant nodes. Weight decay.
-
- Posts: 405
- Joined: Sat Jul 02, 2011 10:49 pm
Re: Neural networks (NN) explained
thanks ...zenpawn wrote:This video (series) provides a beautiful introduction to neural networks:
-
- Posts: 38
- Joined: Thu Mar 30, 2017 8:52 am
Re: Neural networks (NN) explained
Thank you!zenpawn wrote:This video (series) provides a beautiful introduction to neural networks:
I know a bit about computers and a bit about chess, and have dabbled a little with computer chess engines.
With all this talk of AlphaZero and viewing a lot of video and comments about AlphaZero, I never saw anything that tried to describe neural networks. After viewing this video, I now have an idea of what a neural network is!