Skip to content

Commit 2015f6e

Browse files
authored
1024 Hidden Neurons (#397)
Bench: 4894589 Double the size of the hidden layer within Berserk's network. This results in a major slowdown that results in a regression at STC. However, this network scales exceptionally well at LTC. STC ELO | -11.15 +- 3.94 (95%) CONF | 8.0+0.08s Threads=1 Hash=8MB GAMES | N: 14872 W: 3462 L: 3939 D: 7471 LTC ELO | 7.02 +- 4.22 (95%) CONF | 120.0+1.00s Threads=1 Hash=64MB GAMES | N: 11728 W: 2763 L: 2526 D: 6439
1 parent dd1678c commit 2015f6e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
EXE = berserk
55
SRC = *.c pyrrhic/tbprobe.c noobprobe/*.c
66
CC = gcc
7-
VERSION = 20220701
8-
MAIN_NETWORK = networks/berserk-11a8ee076cec.nn
7+
VERSION = 20220718
8+
MAIN_NETWORK = networks/berserk-70370ef71611.nn
99
EVALFILE = $(MAIN_NETWORK)
1010
DEFS = -DVERSION=\"$(VERSION)\" -DEVALFILE=\"$(EVALFILE)\" -DNDEBUG
1111

src/networks

src/types.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#define N_KING_BUCKETS 8
2828

2929
#define N_FEATURES (8 * 12 * 64)
30-
#define N_HIDDEN 512
30+
#define N_HIDDEN 1024
3131
#define N_OUTPUT 1
3232

3333
#if defined(__AVX512F__)

0 commit comments

Comments
 (0)