Genesis-1 is an AlphaZero-style network paired with PUCT Monte Carlo Tree Search.
Input: the board encoded as 20 planes of 8x8, from the side-to-move's perspective (piece positions, castling rights, en passant, fifty-move counter, repetition).
Body: a 15-block, 192-channel residual tower (~10M parameters).
Two heads:
Policy over the 4672-move AlphaZero action space (8x8x73).
Value in [-1, 1], the expected game outcome for the side to move.
Search: moves are chosen by MCTS guided by the network.