Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -117,10 +117,11 @@ architectures on the move-prediction task itself.
|
|
| 117 |
|
| 118 |
### Files in this repository
|
| 119 |
|
| 120 |
-
- `
|
| 121 |
-
data. Both files required at inference time
|
| 122 |
-
|
| 123 |
-
|
|
|
|
| 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("
|
| 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()
|