Skip to content

Commit f6e8047

Browse files
committed
Update Net size and pgnstrip.py
1 parent 7ee6375 commit f6e8047

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

archs/mirrorhkp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ extern int NTHREADS;
3030
/// Definition of the Architecture
3131

3232
const Layer ARCHITECTURE[] = {
33-
{21120, 512, &activate_relu, &backprop_relu },
34-
{ 1024, 8, &activate_relu, &backprop_relu },
33+
{21120, 768, &activate_relu, &backprop_relu },
34+
{ 1536, 8, &activate_relu, &backprop_relu },
3535
{ 8, 32, &activate_relu, &backprop_relu },
3636
{ 32, 1, &activate_sigmoid, &backprop_sigmoid },
3737
};

scripts/pgnstrip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
import sys
3838

3939
INPUT = sys.argv[1]
40-
HEADERS = ['FEN', 'Result']
40+
HEADERS = ['FEN', 'Result', 'White', 'Black']
4141

4242
def parseGames(fin):
4343

0 commit comments

Comments
 (0)