NNUE

From Chessprogramming wiki
Revision as of 21:25, 27 July 2020 by GerdIsenberg (talk | contribs) (Created page with "'''Home * Learning * Neural Networks * NNUE''' '''NNUE''', (ƎUИИ Efficiently Updatable Neural Networks)<br/> a Neural Network architec...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Home * Learning * Neural Networks * NNUE

NNUE, (ƎUИИ Efficiently Updatable Neural Networks)
a Neural Network architecture intended to replace the evaluation of Shogi, chess and other board game playing alpha-beta searchers running on a CPU. NNUE was introduced in 2018 by Yu Nasu [1], and was used in Shogi adaptations of Stockfish such as YaneuraOu [2], and Kristallweizen-kai [3], apparently with AlphaZero strength [4].

Stockfish NNUE

As reported by Henk Drost [5], Nodchip incorporated NNUE into the chess playing Stockfish 10 as a proof of concept. Stockfish NNUE was born incorporating recent search enhancements, and in summer 2020 the computer chess community burst out enthusiastically due to its rapidly raising playing strength with different networks trained using a mixture of supervised and reinforcement learning methods - despite the approximately halved search speed, even becoming stronger than its original [6].

NN Structure

The neural network consists of four layers, W1 through W4. The input layer W1 is heavily overparametrized, feeding in the board representation for various king and pawn configurations. The efficiency of the net is due to incremental update of W1 in make and unmake move, where only a fractions of neurons need to be recalculated. The remaining three layers with 256x2-32-32 channels are computational less expensive, best calculated using appropriate SIMD instructions like AVX2 on x86-64, or if available, AVX-512.

NNUE.jpg

NNUE structure with incremental update [7]

Publications

  • Yu Nasu (2018). ƎUИИ Efficiently Updatable Neural-Network based Evaluation Functions for Computer Shogi. Ziosoft Computer Shogi Club, pdf (Japanese with English abstract)

Forum Posts

Re: NNUE accessible explanation by Jonathan Rosenthal, CCC, July 23, 2020
Re: NNUE accessible explanation by Jonathan Rosenthal, CCC, July 24, 2020

External Links

References

  1. Yu Nasu (2018). ƎUИИ Efficiently Updatable Neural-Network based Evaluation Functions for Computer Shogi. Ziosoft Computer Shogi Club, pdf (Japanese with English abstract)
  2. GitHub - yaneurao/YaneuraOu: YaneuraOu is the World's Strongest Shogi engine(AI player), WCSC29 1st winner, educational and USI compliant engine
  3. GitHub - Tama4649/Kristallweizen: 第29回世界コンピュータ将棋選手権 準優勝のKristallweizenです。
  4. The Stockfish of shogi by Larry Kaufman, CCC, January 07, 2020
  5. Stockfish NNUE by Henk Drost, CCC, May 31, 2020
  6. Can the sardine! NNUE clobbers SF by Henk Drost, CCC, July 16, 2020
  7. Image from Yu Nasu (2018). ƎUИИ Efficiently Updatable Neural-Network based Evaluation Functions for Computer Shogi. Ziosoft Computer Shogi Club, pdf (Japanese with English abstract)
  8. An info by Sylwy, CCC, July 25, 2020

Up one Level