update dataset with lc0 data
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- ChessBot-Dataset.py +24 -16
- README.md +5 -11
- raw-data.zip +0 -3
- raw2dataset.py +244 -0
- raw_data/CC-games/alpha0-VS-stockfish/alphazero_vs_stockfish_all.pgn +3 -0
- raw_data/CC-games/alpha0-VS-stockfish/alphazero_vs_stockfish_tcec_positions_all.pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2018-10.bare.[15509].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2018-11.bare.[17168].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2018-12.bare.[18823].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-01.bare.[22119].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-02.bare.[17169].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-03.bare.[20681].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-04.bare.[21283].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-05.bare.[14181].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-06.bare.[11609].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-07.bare.[7022].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-08.bare.[7751].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-09.bare.[7677].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-10.bare.[7802].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-11.bare.[6974].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2019-12.bare.[7698].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-01.bare.[8571].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-02.bare.[7752].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-03.bare.[7019].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-04.bare.[7622].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-05.bare.[8394].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-06.bare.[9000].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-07.bare.[7557].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-08.bare.[7475].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-09.bare.[6918].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-10.bare.[7660].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-11.bare.[7383].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2020-12.bare.[7176].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-01.bare.[10355].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-02.bare.[8763].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-03.bare.[11168].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-04.bare.[8047].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-05.bare.[7862].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-06.bare.[10172].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-07.bare.[7479].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-08.bare.[8021].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-09.bare.[6484].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-10.bare.[10903].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-11.bare.[10549].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2021-12.bare.[15350].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2022-01.bare.[19999].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2022-02.bare.[16382].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2022-03.bare.[16353].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2022-04.bare.[15381].pgn +3 -0
- raw_data/CC-games/ccrl/additional_oct18-jan24/2022-05.bare.[16783].pgn +3 -0
ChessBot-Dataset.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
import logging
|
| 2 |
from datasets import (
|
| 3 |
GeneratorBasedBuilder,
|
|
@@ -10,6 +11,9 @@ from datasets import (
|
|
| 10 |
Array2D,
|
| 11 |
)
|
| 12 |
from adversarial_gym.chess_env import ChessEnv
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
class ChessPGNDataset(GeneratorBasedBuilder):
|
| 15 |
VERSION = "0.0.1"
|
|
@@ -55,19 +59,23 @@ class ChessPGNDataset(GeneratorBasedBuilder):
|
|
| 55 |
uid = 0
|
| 56 |
|
| 57 |
for path in shards:
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import io
|
| 2 |
import logging
|
| 3 |
from datasets import (
|
| 4 |
GeneratorBasedBuilder,
|
|
|
|
| 11 |
Array2D,
|
| 12 |
)
|
| 13 |
from adversarial_gym.chess_env import ChessEnv
|
| 14 |
+
import zstandard as zstd
|
| 15 |
+
|
| 16 |
+
|
| 17 |
|
| 18 |
class ChessPGNDataset(GeneratorBasedBuilder):
|
| 19 |
VERSION = "0.0.1"
|
|
|
|
| 59 |
uid = 0
|
| 60 |
|
| 61 |
for path in shards:
|
| 62 |
+
decompressor = zstd.ZstdDecompressor()
|
| 63 |
+
with open(path, "rb") as compressed:
|
| 64 |
+
with decompressor.stream_reader(compressed) as reader:
|
| 65 |
+
text_stream = io.TextIOWrapper(reader, encoding='utf-8')
|
| 66 |
+
while (game := chess.pgn.read_game(text_stream)) is not None:
|
| 67 |
+
# while (game := chess.pgn.read_game(f)) is not None:
|
| 68 |
+
board = game.board()
|
| 69 |
+
base = {"1-0":1,"0-1":-1}.get(game.headers["Result"], 0)
|
| 70 |
+
for move in game.mainline_moves():
|
| 71 |
+
state = ChessEnv.get_piece_configuration(board)
|
| 72 |
+
state = state if board.turn else -state
|
| 73 |
+
action = ChessEnv.move_to_action(move)
|
| 74 |
+
result = base * (-1 if board.turn == 0 else 1)
|
| 75 |
+
yield uid, {
|
| 76 |
+
"state": state.astype("int8"),
|
| 77 |
+
"action": int(action),
|
| 78 |
+
"result": int(result),
|
| 79 |
+
}
|
| 80 |
+
uid += 1
|
| 81 |
+
board.push(move)
|
README.md
CHANGED
|
@@ -28,25 +28,19 @@ dataset_info:
|
|
| 28 |
splits:
|
| 29 |
- name: train
|
| 30 |
num_bytes: 65545518162
|
| 31 |
-
num_examples:
|
| 32 |
- name: test
|
| 33 |
num_bytes: 7298385021
|
| 34 |
-
num_examples:
|
| 35 |
download_size: 7621976329
|
| 36 |
dataset_size: 72843903183
|
| 37 |
---
|
| 38 |
|
| 39 |
-
This repository contains a gigantic curated chess dataset meant for machine learning. Currently the dataset contains approximately **
|
| 40 |
|
| 41 |
- Lumbra's Database (filtered 2600+)
|
| 42 |
-
- Lichess Puzzle Database
|
| 43 |
-
- Computer Chess: TCEC Database, CCRL
|
| 44 |
-
|
| 45 |
-
Some stats (subject to change):
|
| 46 |
-
- Games per file: 9808/9809
|
| 47 |
-
- Positions per file: ~700,000
|
| 48 |
-
- Total train positions: 636364254
|
| 49 |
-
- Total test positions: 70858107
|
| 50 |
|
| 51 |
The supporting dataset code and training platform, known as ChessBot-Battleground, is found at: https://github.com/KeithG33/ChessBot-Battleground/
|
| 52 |
|
|
|
|
| 28 |
splits:
|
| 29 |
- name: train
|
| 30 |
num_bytes: 65545518162
|
| 31 |
+
num_examples: -1
|
| 32 |
- name: test
|
| 33 |
num_bytes: 7298385021
|
| 34 |
+
num_examples: -1
|
| 35 |
download_size: 7621976329
|
| 36 |
dataset_size: 72843903183
|
| 37 |
---
|
| 38 |
|
| 39 |
+
This repository contains a gigantic curated chess dataset meant for machine learning. Currently the dataset contains approximately **2 billion positions** in **PGN format**. Huge credits to the following main sources:
|
| 40 |
|
| 41 |
- Lumbra's Database (filtered 2600+)
|
| 42 |
+
- Lichess Puzzle Database
|
| 43 |
+
- Computer Chess: TCEC Database, CCRL, LC0 training data (test80)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
|
| 45 |
The supporting dataset code and training platform, known as ChessBot-Battleground, is found at: https://github.com/KeithG33/ChessBot-Battleground/
|
| 46 |
|
raw-data.zip
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:95e1030fed8f8fa77cca5879e094ea41103602cf77d49110a09e595d23b430a2
|
| 3 |
-
size 2204952170
|
|
|
|
|
|
|
|
|
|
|
|
raw2dataset.py
ADDED
|
@@ -0,0 +1,244 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from multiprocessing import Pool
|
| 2 |
+
import os
|
| 3 |
+
import shutil, random, io
|
| 4 |
+
from pathlib import Path
|
| 5 |
+
from itertools import cycle
|
| 6 |
+
import subprocess
|
| 7 |
+
import tarfile
|
| 8 |
+
import tempfile
|
| 9 |
+
import chess.pgn
|
| 10 |
+
import zstandard as zstd
|
| 11 |
+
from tqdm import tqdm
|
| 12 |
+
|
| 13 |
+
RAW_DATA_DIR = Path("raw_data")
|
| 14 |
+
LC0_TEST_DIR = RAW_DATA_DIR / "lc0-test"
|
| 15 |
+
NUM_TEST_FILES = 1
|
| 16 |
+
TRAIN_DIR = Path("train")
|
| 17 |
+
TEST_DIR = Path("test")
|
| 18 |
+
ZSTD_LEVEL = 10
|
| 19 |
+
GAMES_PER_SHARD = 100000 # As requested: -#100000
|
| 20 |
+
PROCESS_COUNT = 25
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
def open_pgn_stream(path: Path):
|
| 24 |
+
if path.suffix == '.pgn':
|
| 25 |
+
return path.open('r', encoding='utf-8')
|
| 26 |
+
elif path.suffix == '.zst':
|
| 27 |
+
fb = path.open('rb')
|
| 28 |
+
dctx = zstd.ZstdDecompressor()
|
| 29 |
+
return io.TextIOWrapper(dctx.stream_reader(fb), encoding='utf-8')
|
| 30 |
+
else:
|
| 31 |
+
raise ValueError(f"Unsupported extension: {path.suffix}")
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
def open_append_writers(shards, level):
|
| 35 |
+
writers = []
|
| 36 |
+
for p in shards:
|
| 37 |
+
fb = p.open('ab')
|
| 38 |
+
cctx = zstd.ZstdCompressor(level=level)
|
| 39 |
+
writers.append(io.TextIOWrapper(cctx.stream_writer(fb), encoding='utf-8'))
|
| 40 |
+
return writers
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
def prepare_train_test_dirs():
|
| 44 |
+
TRAIN_DIR.mkdir(exist_ok=True)
|
| 45 |
+
TEST_DIR.mkdir(exist_ok=True)
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
def _worker_split_zst_with_pgn_extract(args):
|
| 49 |
+
"""
|
| 50 |
+
Worker function for the multiprocessing pool. It correctly handles pgn-extract's
|
| 51 |
+
behavior by changing the working directory for isolation.
|
| 52 |
+
"""
|
| 53 |
+
input_path, games_per_shard = args
|
| 54 |
+
final_shard_paths = []
|
| 55 |
+
|
| 56 |
+
# Each worker gets a unique temporary directory to work in.
|
| 57 |
+
with tempfile.TemporaryDirectory() as temp_dir:
|
| 58 |
+
temp_dir_path = Path(temp_dir)
|
| 59 |
+
# The decompressed file will live inside this temp directory.
|
| 60 |
+
temp_pgn_path = temp_dir_path / "decompressed.pgn"
|
| 61 |
+
|
| 62 |
+
# 1. Decompress the source .zst into the temporary directory.
|
| 63 |
+
dctx = zstd.ZstdDecompressor()
|
| 64 |
+
with input_path.open('rb') as f_in, temp_pgn_path.open('wb') as f_out:
|
| 65 |
+
dctx.copy_stream(f_in, f_out)
|
| 66 |
+
|
| 67 |
+
# --- CRITICAL SECTION for correct pgn-extract usage ---
|
| 68 |
+
original_cwd = Path.cwd()
|
| 69 |
+
try:
|
| 70 |
+
# 2. Change into the temporary directory. This isolates the pgn-extract output.
|
| 71 |
+
os.chdir(temp_dir_path)
|
| 72 |
+
|
| 73 |
+
# 3. Run pgn-extract. It will create 1.pgn, 2.pgn, etc. *here*.
|
| 74 |
+
# We only need to pass the filename, as we are in its directory.
|
| 75 |
+
command = [
|
| 76 |
+
"pgn-extract",
|
| 77 |
+
f"-#{games_per_shard}",
|
| 78 |
+
temp_pgn_path.name # "decompressed.pgn"
|
| 79 |
+
]
|
| 80 |
+
|
| 81 |
+
# This command is now correct according to the documentation.
|
| 82 |
+
subprocess.run(command, check=True, capture_output=True, text=True, encoding='latin-1')
|
| 83 |
+
except FileNotFoundError:
|
| 84 |
+
print("ERROR: 'pgn-extract' command not found. Please install it and ensure it is in your system's PATH.")
|
| 85 |
+
raise
|
| 86 |
+
except subprocess.CalledProcessError as e:
|
| 87 |
+
print(f"--- ERROR during pgn-extract for {input_path.name}: ---\n{e.stderr}\n---")
|
| 88 |
+
raise
|
| 89 |
+
finally:
|
| 90 |
+
os.chdir(original_cwd)
|
| 91 |
+
# --- END CRITICAL SECTION ---
|
| 92 |
+
|
| 93 |
+
split_pgn_files = sorted(
|
| 94 |
+
[p for p in temp_dir_path.glob("*.pgn") if p.stem.isdigit()],
|
| 95 |
+
key=lambda p: int(p.stem)
|
| 96 |
+
)
|
| 97 |
+
|
| 98 |
+
# 6. Re-compress each shard to a unique .zst file in the original script directory.
|
| 99 |
+
cctx = zstd.ZstdCompressor(level=ZSTD_LEVEL)
|
| 100 |
+
for pgn_shard_path in split_pgn_files:
|
| 101 |
+
final_zst_path = Path(f"{input_path.stem}_part_{pgn_shard_path.stem}.pgn.zst")
|
| 102 |
+
with pgn_shard_path.open('rb') as f_in, final_zst_path.open('wb') as f_out:
|
| 103 |
+
cctx.copy_stream(f_in, f_out)
|
| 104 |
+
final_shard_paths.append(final_zst_path)
|
| 105 |
+
|
| 106 |
+
# The temp directory and its contents (decompressed.pgn, 1.pgn, etc.) are now deleted.
|
| 107 |
+
return final_shard_paths
|
| 108 |
+
|
| 109 |
+
|
| 110 |
+
def resplit_test_files(test_files, games_per_split):
|
| 111 |
+
"""
|
| 112 |
+
Re-splits each test .pgn.zst file into smaller chunks sequentially.
|
| 113 |
+
|
| 114 |
+
Args:
|
| 115 |
+
test_files (list of Path): Paths to the original test shards.
|
| 116 |
+
games_per_split (int): Number of games per new shard.
|
| 117 |
+
|
| 118 |
+
Returns:
|
| 119 |
+
List[Path]: List of newly created smaller test shard paths.
|
| 120 |
+
"""
|
| 121 |
+
print(f"\nResplitting {len(test_files)} test shard(s) into smaller shards...")
|
| 122 |
+
|
| 123 |
+
new_test_shards = []
|
| 124 |
+
for test_file in tqdm(test_files, desc="Resplitting test shards"):
|
| 125 |
+
smaller_shards = _worker_split_zst_with_pgn_extract((test_file, games_per_split))
|
| 126 |
+
new_test_shards.extend(smaller_shards)
|
| 127 |
+
test_file.unlink() # Remove original file
|
| 128 |
+
|
| 129 |
+
return new_test_shards
|
| 130 |
+
|
| 131 |
+
def split_and_distribute_files():
|
| 132 |
+
"""
|
| 133 |
+
Finds all .pgn.zst files, splits them into shards of 100,000 games each,
|
| 134 |
+
and distributes the resulting .pgn.zst shards into train/ and test/ folders.
|
| 135 |
+
|
| 136 |
+
Returns:
|
| 137 |
+
A tuple containing two lists: (train_shard_paths, test_shard_paths)
|
| 138 |
+
"""
|
| 139 |
+
prepare_train_test_dirs()
|
| 140 |
+
|
| 141 |
+
all_zst_inputs = list(LC0_TEST_DIR.rglob("*.zst"))
|
| 142 |
+
if not all_zst_inputs:
|
| 143 |
+
print(f"No .zst files found in {LC0_TEST_DIR}. Cannot perform Step 1.")
|
| 144 |
+
return [], []
|
| 145 |
+
|
| 146 |
+
print(f"Found {len(all_zst_inputs)} source .pgn.zst files. Starting split process...")
|
| 147 |
+
|
| 148 |
+
tasks = [(path, GAMES_PER_SHARD) for path in all_zst_inputs]
|
| 149 |
+
|
| 150 |
+
all_new_shards = []
|
| 151 |
+
with Pool(processes=PROCESS_COUNT) as pool:
|
| 152 |
+
for shards in tqdm(pool.imap(_worker_split_zst_with_pgn_extract, tasks),
|
| 153 |
+
total=len(tasks),
|
| 154 |
+
desc="Splitting source files"):
|
| 155 |
+
all_new_shards.extend(shards)
|
| 156 |
+
|
| 157 |
+
print(f"\nCreated a total of {len(all_new_shards)} new shards.")
|
| 158 |
+
|
| 159 |
+
# --- Distribution Logic ---
|
| 160 |
+
random.shuffle(all_new_shards)
|
| 161 |
+
test_selection = all_new_shards[:NUM_TEST_FILES]
|
| 162 |
+
train_selection = all_new_shards[NUM_TEST_FILES:]
|
| 163 |
+
|
| 164 |
+
print(f"Moving {len(train_selection)} shards to train/ and {len(test_selection)} to test/...")
|
| 165 |
+
|
| 166 |
+
for shard in train_selection:
|
| 167 |
+
shutil.move(str(shard), TRAIN_DIR / shard.name)
|
| 168 |
+
|
| 169 |
+
intermediate_test_paths = []
|
| 170 |
+
for shard in test_selection:
|
| 171 |
+
final_path = TEST_DIR / shard.name
|
| 172 |
+
shutil.move(str(shard), final_path)
|
| 173 |
+
intermediate_test_paths.append(final_path)
|
| 174 |
+
|
| 175 |
+
# Final re-split of test file(s)
|
| 176 |
+
resplit_test_shards = resplit_test_files(intermediate_test_paths, GAMES_PER_SHARD // 10)
|
| 177 |
+
|
| 178 |
+
for shard in resplit_test_shards:
|
| 179 |
+
shutil.move(str(shard), TEST_DIR / shard.name)
|
| 180 |
+
|
| 181 |
+
final_train_paths = [TRAIN_DIR / s.name for s in train_selection]
|
| 182 |
+
final_test_paths = [TEST_DIR / s.name for s in resplit_test_shards]
|
| 183 |
+
|
| 184 |
+
return final_train_paths, final_test_paths
|
| 185 |
+
|
| 186 |
+
|
| 187 |
+
|
| 188 |
+
def get_pgn_file_paths(input_dir):
|
| 189 |
+
return list(Path(input_dir).rglob("*.pgn"))
|
| 190 |
+
|
| 191 |
+
|
| 192 |
+
def distribute_games_to_zst_shards(pgn_paths, train_shards, test_shards, split_ratio=0.01):
|
| 193 |
+
train_writers = open_append_writers(train_shards, level=ZSTD_LEVEL)
|
| 194 |
+
test_writers = open_append_writers(test_shards, level=ZSTD_LEVEL)
|
| 195 |
+
|
| 196 |
+
train_cycle = cycle(train_writers)
|
| 197 |
+
test_cycle = cycle(test_writers)
|
| 198 |
+
|
| 199 |
+
total_games = 0
|
| 200 |
+
for path in pgn_paths:
|
| 201 |
+
with open_pgn_stream(path) as f:
|
| 202 |
+
games_iter = iter(lambda: chess.pgn.read_game(f), None)
|
| 203 |
+
for game in tqdm(games_iter,
|
| 204 |
+
desc=f"Distributing games from {path.name}",
|
| 205 |
+
unit="game"):
|
| 206 |
+
total_games += 1
|
| 207 |
+
if random.random() < split_ratio:
|
| 208 |
+
w = next(test_cycle)
|
| 209 |
+
else:
|
| 210 |
+
w = next(train_cycle)
|
| 211 |
+
exporter = chess.pgn.FileExporter(w)
|
| 212 |
+
game.accept(exporter)
|
| 213 |
+
|
| 214 |
+
for w in train_writers + test_writers:
|
| 215 |
+
w.close()
|
| 216 |
+
|
| 217 |
+
def compress_raw_data_zst():
|
| 218 |
+
"""Creates raw_data.tar.zst with Zstd(level=ZSTD_LEVEL) compression."""
|
| 219 |
+
zst_path = RAW_DATA_DIR.with_suffix('.tar.zst')
|
| 220 |
+
cctx = zstd.ZstdCompressor(level=ZSTD_LEVEL)
|
| 221 |
+
|
| 222 |
+
with cctx.stream_writer(zst_path.open('wb')) as zst_writer:
|
| 223 |
+
# Build a streaming tar over that writer
|
| 224 |
+
with tarfile.open(fileobj=zst_writer, mode='w|') as tar:
|
| 225 |
+
for path in tqdm(RAW_DATA_DIR.rglob("*"),
|
| 226 |
+
desc="Archiving raw_data",
|
| 227 |
+
unit="file"):
|
| 228 |
+
# Add each file/dir under raw_data into the tar
|
| 229 |
+
tar.add(path, arcname=path.relative_to(RAW_DATA_DIR.parent))
|
| 230 |
+
|
| 231 |
+
def main():
|
| 232 |
+
print("Step 1: Split & distribute .pgn.zst → train/test")
|
| 233 |
+
train_shards, test_shards = split_and_distribute_files()
|
| 234 |
+
|
| 235 |
+
print("\nStep 2: Distribute remaining .pgn files")
|
| 236 |
+
all_pgns = get_pgn_file_paths(RAW_DATA_DIR)
|
| 237 |
+
|
| 238 |
+
print(f"Found {len(all_pgns)} .pgn files. Starting distribution process...")
|
| 239 |
+
distribute_games_to_zst_shards(all_pgns, train_shards, test_shards)
|
| 240 |
+
|
| 241 |
+
print("\n✅ Pipeline complete.")
|
| 242 |
+
|
| 243 |
+
if __name__ == "__main__":
|
| 244 |
+
main()
|
raw_data/CC-games/alpha0-VS-stockfish/alphazero_vs_stockfish_all.pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2ff8c16749bdc61b2e1eabacb9f2b2ac2df3616731c0ff1567218431c99623ff
|
| 3 |
+
size 198043
|
raw_data/CC-games/alpha0-VS-stockfish/alphazero_vs_stockfish_tcec_positions_all.pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:492d5d944d383f96651603975d5af456f2db69632e55598ff2293b2e6f86dc0c
|
| 3 |
+
size 183874
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2018-10.bare.[15509].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d3dd74cb4f0e5c39ed5cbe0ba9eba0e60b4d90870aabc63049c5cc89dae654b
|
| 3 |
+
size 16956080
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2018-11.bare.[17168].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7fb720741c042e511fb2320c8bc95d49909847254a49027ffb7bc71a6261b4b5
|
| 3 |
+
size 19523395
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2018-12.bare.[18823].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fd42eba87f6005267fb2642ba9b29f09e7a3a86c831eef6244ba1960dc1e8acb
|
| 3 |
+
size 21090678
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-01.bare.[22119].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a95442d7779fc1d5a5633cb26a231f73509c127f347e6f90ebd5e74ef978c0fd
|
| 3 |
+
size 24895047
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-02.bare.[17169].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4a0af44f444b0acffcf31139da85d0142cfa1f3e78acdb285d73e528198d9d74
|
| 3 |
+
size 19194776
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-03.bare.[20681].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ee52517a46a5a726b088bed5382ae2d196ae6b6001e35fdc4e31e30ae4197712
|
| 3 |
+
size 22942393
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-04.bare.[21283].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7dfd639527db487d7073825394d9aebfcb082f9a79b82e38656f14fc599595c
|
| 3 |
+
size 23107668
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-05.bare.[14181].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:61a8ac264e3c718097c8dd21ef5e3c9d8b5f770ce9daec1d3d8146702383dfe2
|
| 3 |
+
size 16010085
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-06.bare.[11609].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9615711a2cc55fdd5985a559e3dd66e88bae41293f352c9058f02f91c7eeff6d
|
| 3 |
+
size 13062023
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-07.bare.[7022].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bfe28ac13d0afcf306bc93d34096dd939690fc01a91b56d142c73868537c849b
|
| 3 |
+
size 7578187
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-08.bare.[7751].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ffc6da06f7f0e3657aa08f69caafc70006819a7f920e454003b78e06ad1a2d1
|
| 3 |
+
size 8415859
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-09.bare.[7677].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52436556aaf4d921dd6750ebf84e729fb1ec21a66b10027393a8b2a5dd899d51
|
| 3 |
+
size 8328465
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-10.bare.[7802].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bee7b2b6e3e67b87c29072c4d331f21d8696df002576026e10553b50ab1ba00a
|
| 3 |
+
size 8483836
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-11.bare.[6974].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:34f112aa539ea049a261276991eaac5c7e92e01884f83b7d2fe9ba4f53f2fd9d
|
| 3 |
+
size 7557574
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2019-12.bare.[7698].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:46c4dd26a5c79158f6abacbe2fbcd20bfa6092c93b8c6ef6c1ac84896e974cda
|
| 3 |
+
size 8308419
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-01.bare.[8571].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:58d5c5290e60439c71211bd82a5f0ff2bf395372147456046e16e60b31723876
|
| 3 |
+
size 9350438
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-02.bare.[7752].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ef06a24a240b795e058f63f63d9ecd636322eaf16d75867905eeb3d1a863a43
|
| 3 |
+
size 8417767
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-03.bare.[7019].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03f736e4ca4502400395a3c2c8db07fe7d9d1ea6faa0e48f14ddbe5ab4391882
|
| 3 |
+
size 7602203
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-04.bare.[7622].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fccc970349a97b880046e98fb044103804e0e9c763a51a2734c4396f658a6e5c
|
| 3 |
+
size 8297776
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-05.bare.[8394].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ee903d122e18264bcaac9ac0e8551de803811bdb9fd7375bdb00605e840bc77
|
| 3 |
+
size 9116733
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-06.bare.[9000].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:24d8a08985d5801f4a587f2fc8c1271d40476120cd627b50a30220a44d1e2879
|
| 3 |
+
size 9939878
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-07.bare.[7557].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:763d666df160c42d3520428ef1279f922f476507a5d3899e63b4e527d541833a
|
| 3 |
+
size 8141495
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-08.bare.[7475].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d11d1ecf3ab1826590eca0bf3d2f60f84bce1f4f9cbace4d1ed5b5551b1053d0
|
| 3 |
+
size 8094996
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-09.bare.[6918].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2de54cdeab91deec56b3a93c81cc0769f7d2dfc0da49071da4c54cb2328de9ce
|
| 3 |
+
size 7407758
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-10.bare.[7660].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cf0beda2894173f38dd61a734c0a9b202c236b338e271760922137ffbe417872
|
| 3 |
+
size 8274644
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-11.bare.[7383].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fc38f433f3f1463dadc38a0f5bbf0dbe45e49cface00c19d0eb70a0b7e7afa57
|
| 3 |
+
size 7948101
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2020-12.bare.[7176].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6ca99ab6da9b79533b08bcf685bbe9dbaf5eea257617178ac27485d56d34e901
|
| 3 |
+
size 7776469
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-01.bare.[10355].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50791ed46062c436a7f7456b1515e39e926f5cff9594eb5f0ae5da136a136726
|
| 3 |
+
size 11252912
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-02.bare.[8763].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a569762627ae7df98b9d17b004a001ee739571322b7fc2447b782217d2f7dd93
|
| 3 |
+
size 9520419
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-03.bare.[11168].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73e50ba3d74bb93fc1807217e4463958d37d29f759ec3f45fb7f7d9d0519e789
|
| 3 |
+
size 12383197
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-04.bare.[8047].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:53fba2f8fa31ff5d9d8d2de07520a891f39925019d0c550f6316a9fe7ce2cb1e
|
| 3 |
+
size 8737905
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-05.bare.[7862].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f36cfc266d14ae9189f0a089f4badafe8f93941127afbf90d9494b38e9b261ad
|
| 3 |
+
size 8547205
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-06.bare.[10172].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:85ab9d8a07eb94ef3b4ec082d288416a3ad10892428f992889668aaba2ed35e9
|
| 3 |
+
size 11320695
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-07.bare.[7479].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f04755b2f36eb17f7110894e71ac65408db08f5052dc3ad38746b5223f816bb5
|
| 3 |
+
size 8110491
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-08.bare.[8021].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b5638aef9caff6de0bbf890b3f642b2e701b5f0e704540c0c7c18dca70781a3
|
| 3 |
+
size 8613265
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-09.bare.[6484].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ef72e296f46663c1e47f3be84b572d2160681c714d9838144f299590169f8ad
|
| 3 |
+
size 6970841
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-10.bare.[10903].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8367933588a801243bd479707dc7a1d4de0739e93db0044272121f5cec728ace
|
| 3 |
+
size 11881383
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-11.bare.[10549].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:59ffd52d8f139f302f9cd866a0ea379bbfec1e08a860a11ff7178ac3079f0690
|
| 3 |
+
size 11325302
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2021-12.bare.[15350].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ad9245d703fc8c738edad019a6eb152960f4b77712ab23b959d0acdcf74ad4c5
|
| 3 |
+
size 16409747
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2022-01.bare.[19999].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:241b85768667e08147395deb34c8db44e4b9fe092c2908bbd5abe9367cf04391
|
| 3 |
+
size 21524806
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2022-02.bare.[16382].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f998de93a5de6c787c236cae4136d72ee75d0cc74e83afc18c0ca3f3bb567b9d
|
| 3 |
+
size 17498365
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2022-03.bare.[16353].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:834ff8b411a1613421b5a368d73e1eb03f7b613aaa6f6cb7844afd7664afb2fd
|
| 3 |
+
size 17475316
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2022-04.bare.[15381].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e6c5ca46239a58ce5473941db9a272899be10bd9e8fe53810687faafd584d0e
|
| 3 |
+
size 16593291
|
raw_data/CC-games/ccrl/additional_oct18-jan24/2022-05.bare.[16783].pgn
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eb4a1427cc787d85ea587156f7896a674b25f1573bda1f749731d92274cee8de
|
| 3 |
+
size 17903116
|