Skip to content

Commit 62d5d0c

Browse files
committed
Update references after repo transfer to official-stockfish
1 parent cf579af commit 62d5d0c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: scripts/easy_train.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2035,7 +2035,7 @@ def parse_cli_args():
20352035
)
20362036
parser.add_argument(
20372037
'--nnue-pytorch-branch',
2038-
default='glinscott/nnue-pytorch/master',
2038+
default='official-stockfish/nnue-pytorch/master',
20392039
type=str,
20402040
metavar='BRANCH_OR_COMMIT',
20412041
dest='nnue_pytorch_branch',

Diff for: serialize.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def decode_leb_128_array(arr, n):
5757

5858
# hardcoded for now
5959
VERSION = 0x7AF32F20
60-
DEFAULT_DESCRIPTION = "Network trained with the https://github.com/glinscott/nnue-pytorch trainer."
60+
DEFAULT_DESCRIPTION = "Network trained with the https://github.com/official-stockfish/nnue-pytorch trainer."
6161

6262
class NNUEWriter():
6363
"""

Diff for: visualize.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def plot_input_weights(self):
133133
if default_order:
134134
# Piece centric, but with flipped king position.
135135
# Same order as used by https://github.com/hxim/Stockfish-Evaluation-Guide.
136-
# See also https://github.com/glinscott/nnue-pytorch/issues/42#issuecomment-753604393.
136+
# See also https://github.com/official-stockfish/nnue-pytorch/issues/42#issuecomment-753604393.
137137
inpos = [[(7- kipos[0]) + pipos[0] *8, kipos[1]+(7-pipos[1])*8],
138138
[(7-(kipos[0]^7))+(pipos[0]^7)*8, kipos[1]+(7-pipos[1])*8]]
139139
d = - 8 if piece < 2 else 48 + (piece // 2 - 1) * 64

0 commit comments

Comments
 (0)