Skip to content

Commit

Permalink
Increase hidden layer to 256
Browse files Browse the repository at this point in the history
Bench: 1540328
  • Loading branch information
codedeliveryservice committed Apr 24, 2024
1 parent bfe252c commit 1daa0ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nnue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use crate::types::{Color, Piece, Square};
mod simd;

const INPUT_SIZE: usize = 768;
const HIDDEN_SIZE: usize = 128;
const HIDDEN_SIZE: usize = 256;

const EVAL_SCALE: i32 = 400;
const L0_SCALE: i32 = 256;
Expand Down

0 comments on commit 1daa0ff

Please sign in to comment.