Skip to content

Commit

Permalink
feat(nnue): new network
Browse files Browse the repository at this point in the history
  • Loading branch information
dogeystamp committed Feb 10, 2025
1 parent ef178a3 commit 69b196d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion nnue/s2_process_pgn_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ async def worker(game_generator: AsyncIterator[pgn.Game]) -> None:
Puts rows of output into a global queue.
"""
transport, engine = await chess.engine.popen_uci(args.engine)
await engine.configure(dict(NNUETrainInfo="true", Hash="128"))
await engine.configure(dict(NNUETrainInfo="true", Hash="800"))

async for game in game_generator:
wdl: int | None = None
Expand Down
2 changes: 1 addition & 1 deletion nnue/s3_train_neural_net.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
BATCH_SIZE = 16384
BIG_BATCH_SIZE = 2**22

EPOCHS = 5
EPOCHS = 10

# neural net architecture

Expand Down
2 changes: 1 addition & 1 deletion src/weights.bin
Git LFS file not shown

0 comments on commit 69b196d

Please sign in to comment.