novachess commited on
Commit
39de76a
·
verified ·
1 Parent(s): 58b0b34

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +6 -5
README.md CHANGED
@@ -117,10 +117,11 @@ architectures on the move-prediction task itself.
117
 
118
  ### Files in this repository
119
 
120
- - `nova.onnx` + `nova.onnx.data` — ONNX export with external
121
- data. Both files required at inference time; place in the same
122
- directory before loading.
123
- - `nova.pt` PyTorch checkpoint (weights only) for research
 
124
  and fine-tuning.
125
  - `unified_sample_600k.pkl` — the 600K-position out-of-sample
126
  evaluation set used in the results reported below. Schema:
@@ -341,7 +342,7 @@ def fen_to_planes(fen):
341
  planes[17, 0, ord(ep[0]) - ord("a")] = 1.0
342
  return planes
343
 
344
- session = ort.InferenceSession("nova.onnx",
345
  providers=["CPUExecutionProvider"])
346
 
347
  board = chess.Board()
 
117
 
118
  ### Files in this repository
119
 
120
+ - `nova_v3b.onnx` + `nova_v3b.onnx.data` — ONNX export with external
121
+ data. Both files required at inference time and **must keep their
122
+ exact filenames** — the `.onnx` file embeds a reference to the
123
+ `.data` sidecar by name. Place in the same directory before loading.
124
+ - `nova_v3b.pt` — PyTorch checkpoint (weights only) for research
125
  and fine-tuning.
126
  - `unified_sample_600k.pkl` — the 600K-position out-of-sample
127
  evaluation set used in the results reported below. Schema:
 
342
  planes[17, 0, ord(ep[0]) - ord("a")] = 1.0
343
  return planes
344
 
345
+ session = ort.InferenceSession("nova_v3b.onnx",
346
  providers=["CPUExecutionProvider"])
347
 
348
  board = chess.Board()