Skip to content

Commit 60e31f6

Browse files
committed
New NNUE architecture, HalfA 384x2-8-16
1 parent c03bb62 commit 60e31f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
NUM_INPUTS = NUM_SQ*NUM_PT
1111

1212
# 3 layer fully connected network
13-
L1 = 256
13+
L1 = 384
1414
L2 = 8
1515
L3 = 16
1616

quantize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
MAX_HIDDEN_WEIGHT = MAX_QUANTIZED_ACTIVATION/HIDDEN_WEIGHT_SCALE
2020
MAX_OUTPUT_WEIGHT = MAX_QUANTIZED_ACTIVATION/OUTPUT_WEIGHT_SCALE
2121

22-
NNUE_FORMAT_VERSION = 0x00000008
22+
NNUE_FORMAT_VERSION = 0x00000009
2323

2424
def write_header(buf, version):
2525
buf.extend(struct.pack('<I', version))

0 commit comments

Comments
 (0)