PuzzleBench commited on
Commit
d3fa682
·
verified ·
1 Parent(s): fcce891

Republish as unified Parquet table (segmentation + pVQA)

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. README.md +167 -81
  2. val.tar → data/test-00000-of-00002.parquet +2 -2
  3. train.tar → data/test-00001-of-00002.parquet +2 -2
  4. data/train-00000-of-00005.parquet +3 -0
  5. data/train-00001-of-00005.parquet +3 -0
  6. data/train-00002-of-00005.parquet +3 -0
  7. data/train-00003-of-00005.parquet +3 -0
  8. data/train-00004-of-00005.parquet +3 -0
  9. data/val-00000-of-00002.parquet +3 -0
  10. data/val-00001-of-00002.parquet +3 -0
  11. masks/test/chess_000001.png +3 -0
  12. masks/test/chess_000005.png +3 -0
  13. masks/test/chess_000007.png +3 -0
  14. masks/test/chess_000009.png +3 -0
  15. masks/test/chess_000010.png +3 -0
  16. masks/test/chess_000012.png +3 -0
  17. masks/test/chess_000013.png +3 -0
  18. masks/test/chess_000015.png +3 -0
  19. masks/test/chess_000016.png +3 -0
  20. masks/test/chess_000019.png +3 -0
  21. masks/test/chess_000021.png +3 -0
  22. masks/test/chess_000022.png +3 -0
  23. masks/test/chess_000034.png +3 -0
  24. masks/test/chess_000038.png +3 -0
  25. masks/test/chess_000039.png +3 -0
  26. masks/test/chess_000040.png +3 -0
  27. masks/test/chess_000044.png +3 -0
  28. masks/test/chess_000048.png +3 -0
  29. masks/test/chess_000053.png +3 -0
  30. masks/test/chess_000057.png +3 -0
  31. masks/test/chess_000058.png +3 -0
  32. masks/test/chess_000063.png +3 -0
  33. masks/test/chess_000065.png +3 -0
  34. masks/test/chess_000070.png +3 -0
  35. masks/test/chess_000075.png +3 -0
  36. masks/test/chess_000077.png +3 -0
  37. masks/test/chess_000081.png +3 -0
  38. masks/test/chess_000082.png +3 -0
  39. masks/test/chess_000085.png +3 -0
  40. masks/test/chess_000087.png +3 -0
  41. masks/test/chess_000090.png +3 -0
  42. masks/test/chess_000093.png +3 -0
  43. masks/test/chess_000095.png +3 -0
  44. masks/test/chess_000098.png +3 -0
  45. masks/test/chess_000100.png +3 -0
  46. masks/test/chess_000102.png +3 -0
  47. masks/test/chess_000109.png +3 -0
  48. masks/test/chess_000111.png +3 -0
  49. masks/test/chess_000116.png +3 -0
  50. masks/test/chess_000120.png +3 -0
README.md CHANGED
@@ -1,112 +1,198 @@
1
  ---
2
  license: cc-by-4.0
3
- task_categories:
4
- - image-segmentation
5
  language:
6
  - en
 
 
 
 
 
 
7
  tags:
8
  - puzzle-perception
9
  - segmentation
 
10
  - chess
11
  - maze
12
  - tower-of-hanoi
 
13
  - synthetic
14
- pretty_name: Puzzle Perception Segmentation
15
- size_categories:
16
- - 1K<n<10K
 
 
 
 
 
 
17
  ---
18
 
19
- # Puzzle Perception Segmentation
20
-
21
- A combined per-pixel segmentation dataset over three puzzle domains —
22
- chess, maze, and tower-of-hanoi — under a single unified 30-class label
23
- space. The published split is a deterministically sampled subset of three
24
- larger raw source datasets, sized to match a standard
25
- segmentation-probe training recipe.
26
-
27
- This dataset is used by the **PuzzleBench** project. The loader and full
28
- project code live at the project's repository; this HuggingFace repo
29
- ships only the bulk image + mask payload plus the class definitions.
30
-
31
- ## Splits
32
-
33
- | Split | Per source task | Total |
34
- |---|---:|---:|
35
- | `train` | 2000 | 6000 |
36
- | `val` | 500 | 1500 |
37
- | `test` | 500 | 1500 |
38
-
39
- Splits are produced from the source datasets with a fixed seed (`42`),
40
- so the subset is reproducible.
41
-
42
- ## Class space
43
 
44
- Masks are 8-bit PNGs with pixel values in `[0, 29]`. The mapping (also
45
- shipped as `classes.yaml`):
46
 
47
- | Source task | Class ids | Count |
48
- |---|---|---:|
49
- | maze | 0..7 | 8 |
50
- | chess | 8..22 | 15 |
51
- | hanoi | 23..29 | 7 |
52
 
53
- Per-class names and loss weights (cross-entropy and mIoU) are documented
54
- in [`classes.yaml`](./classes.yaml).
55
 
56
- ## Layout
 
57
 
58
- This repository ships each split as a single uncompressed `.tar` archive
59
- (PNGs are already compressed). After extraction the on-disk layout is::
 
60
 
61
- data/
62
- ├── classes.yaml
63
- ├── manifest.csv # unified_id, source_task, source_id, split
64
- ├── train/
65
- │ ├── images/<task>_<id>.png # source image (512×512 RGB)
66
- │ └── masks/<task>_<id>.png # mask (512×512, uint8, values 0..29)
67
- ├── val/{images,masks}/
68
- └── test/{images,masks}/
69
 
70
- Repo contents:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
 
72
- | File | Notes |
73
- |---|---|
74
- | `README.md`, `classes.yaml`, `manifest.csv` | Documentation + class map + per-sample index |
75
- | `train.tar` | 6000 (image, mask) pairs, ~2.1 GB |
76
- | `val.tar` | 1500 (image, mask) pairs, ~520 MB |
77
- | `test.tar` | 1500 (image, mask) pairs, ~510 MB |
78
 
79
- Each sample's filename encodes its source task (e.g. `chess_000625.png`,
80
- `maze_00012.png`, `hanoi_00042.png`).
 
81
 
82
- ## Usage
83
 
84
- ```python
85
- from huggingface_hub import snapshot_download
86
- from pathlib import Path
87
- import tarfile, numpy as np
88
- from PIL import Image
 
89
 
90
- root = Path("Puzzle_Perception_data")
91
- snapshot_download(
92
- repo_id="PuzzleBench/Puzzle_Perception",
93
- repo_type="dataset",
94
- local_dir=str(root),
95
- )
96
 
97
- for split in ("train", "val", "test"):
98
- with tarfile.open(root / f"{split}.tar") as tf:
99
- tf.extractall(root)
100
 
101
- img = np.array(Image.open(root / "train/images/chess_000625.png")) # (512, 512, 3) uint8
102
- mask = np.array(Image.open(root / "train/masks/chess_000625.png")) # (512, 512) uint8, in [8..22] for chess
103
- ```
104
 
105
- The PuzzleBench project ships a `download.py` helper that does the
106
- snapshot + extract in one step, plus a `CombinedSegmentationDataset`
107
- PyTorch wrapper.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
 
109
  ## License
110
 
111
- This dataset is released under **CC BY 4.0**. If you use it, please cite
112
- the PuzzleBench project.
 
1
  ---
2
  license: cc-by-4.0
 
 
3
  language:
4
  - en
5
+ pretty_name: Puzzle Perception (Segmentation + pVQA)
6
+ size_categories:
7
+ - 10K<n<100K
8
+ task_categories:
9
+ - image-segmentation
10
+ - visual-question-answering
11
  tags:
12
  - puzzle-perception
13
  - segmentation
14
+ - pvqa
15
  - chess
16
  - maze
17
  - tower-of-hanoi
18
+ - nqueens
19
  - synthetic
20
+ configs:
21
+ - config_name: default
22
+ data_files:
23
+ - split: train
24
+ path: data/train-*.parquet
25
+ - split: val
26
+ path: data/val-*.parquet
27
+ - split: test
28
+ path: data/test-*.parquet
29
  ---
30
 
31
+ # Puzzle Perception Segmentation + pVQA
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
+ A single table over two tasks on synthetic puzzle images:
 
34
 
35
+ - **Segmentation** per-pixel masks over chess, maze and tower-of-hanoi under one
36
+ unified 30-class label space.
37
+ - **pVQA** — multiple-choice perception probes over chess and N-Queens boards.
 
 
38
 
39
+ Every row carries the same 11 columns; the `type` column says which task it
40
+ belongs to, and columns that do not apply are `null`.
41
 
42
+ ```python
43
+ from datasets import load_dataset
44
 
45
+ ds = load_dataset("PuzzleBench/Puzzle_Perception", split="test")
46
+ pvqa = ds.filter(lambda r: r["type"] == "pvqa")
47
+ seg = ds.filter(lambda r: r["type"] == "segmentation")
48
 
49
+ row = seg[0]
50
+ row["image"] # PIL.Image, 512x512 RGB
51
+ row["segmentation_labels"] # e.g. ['black_square', 'white_queen', ...]
52
+ ```
 
 
 
 
53
 
54
+ ## Columns
55
+
56
+ | Column | Type | Segmentation rows | pVQA rows |
57
+ |---|---|---|---|
58
+ | `id` | `int64` | unique, contiguous from 0 | unique, contiguous from 0 |
59
+ | `image` | `Image` | 512×512 RGB | 512×512 RGB |
60
+ | `mask` | `string` | path to a mask PNG in this repo | `null` |
61
+ | `puzzle` | `string` | `chess` / `maze` / `hanoi` | `chess` / `nqueens` |
62
+ | `image_path` | `string` | source-tree path (provenance) | source-tree path (provenance) |
63
+ | `type` | `string` | `segmentation` | `pvqa` |
64
+ | `segmentation_labels` | `list<string>` | class names present in the mask | `null` |
65
+ | `question` | `string` | `null` | probe question text |
66
+ | `answer` | `string` | `null` | correct option, as text |
67
+ | `question_id` | `string` | `null` | `q1`…`q8`, joins `pvqa_questions.yaml` |
68
+ | `options` | `list<string>` | `null` | the full answer space |
69
+
70
+ `image` is embedded in the Parquet as PNG bytes, so it renders in the viewer and
71
+ `load_dataset` hands back a `PIL.Image`. `mask` is instead a **path** to a real
72
+ file shipped under `masks/`, which keeps label maps — whose pixel values are
73
+ `0..29` and therefore look almost black — out of the preview:
74
 
75
+ ```python
76
+ from huggingface_hub import hf_hub_download
77
+ import numpy as np
78
+ from PIL import Image
 
 
79
 
80
+ p = hf_hub_download("PuzzleBench/Puzzle_Perception", row["mask"], repo_type="dataset")
81
+ mask = np.array(Image.open(p)) # (512, 512) uint8, values in [0, 29]
82
+ ```
83
 
84
+ ## Splits
85
 
86
+ | Split | Total | Segmentation | pVQA | Per-puzzle |
87
+ |---|---:|---:|---:|---|
88
+ | `train` | 6000 | 6000 | 0 | seg: chess 2000, hanoi 2000, maze 2000 |
89
+ | `val` | 1500 | 1500 | 0 | seg: chess 500, hanoi 500, maze 500 |
90
+ | `test` | 2700 | 1500 | 1200 | seg: chess 500, hanoi 500, maze 500 · pVQA: chess 800, nqueens 400 |
91
+ | **total** | **10200** | **9000** | **1200** | |
92
 
93
+ pVQA appears **only** in `test`, and its rows are written before the
94
+ segmentation rows of that split.
 
 
 
 
95
 
96
+ ## Segmentation labels
 
 
97
 
98
+ Masks are 8-bit PNGs whose pixel values **are** these class ids — no remapping
99
+ at load time.
 
100
 
101
+ | Puzzle | Class ids | Count |
102
+ |---|---|---:|
103
+ | maze | 0–7 | 8 |
104
+ | chess | 8–22 | 15 |
105
+ | hanoi | 23–29 | 7 |
106
+
107
+ | Class id | Name | Puzzle |
108
+ |---:|---|---|
109
+ | 0 | `wall` | maze |
110
+ | 1 | `path` | maze |
111
+ | 2 | `start` | maze |
112
+ | 3 | `dest_a` | maze |
113
+ | 4 | `dest_b` | maze |
114
+ | 5 | `dest_c` | maze |
115
+ | 6 | `dest_d` | maze |
116
+ | 7 | `dest_e` | maze |
117
+ | 8 | `background` | chess |
118
+ | 9 | `white_square` | chess |
119
+ | 10 | `black_square` | chess |
120
+ | 11 | `white_pawn` | chess |
121
+ | 12 | `white_knight` | chess |
122
+ | 13 | `white_bishop` | chess |
123
+ | 14 | `white_rook` | chess |
124
+ | 15 | `white_queen` | chess |
125
+ | 16 | `white_king` | chess |
126
+ | 17 | `black_pawn` | chess |
127
+ | 18 | `black_knight` | chess |
128
+ | 19 | `black_bishop` | chess |
129
+ | 20 | `black_rook` | chess |
130
+ | 21 | `black_queen` | chess |
131
+ | 22 | `black_king` | chess |
132
+ | 23 | `background` | hanoi |
133
+ | 24 | `peg` | hanoi |
134
+ | 25 | `disk_1` | hanoi |
135
+ | 26 | `disk_2` | hanoi |
136
+ | 27 | `disk_3` | hanoi |
137
+ | 28 | `disk_4` | hanoi |
138
+ | 29 | `disk_5` | hanoi |
139
+
140
+ Note `background` appears twice — chess id 8 and hanoi id 23 are distinct
141
+ classes in this unified namespace — so `segmentation_labels` names should be
142
+ read together with `puzzle`. Per-class loss weights live in `classes.yaml`.
143
+
144
+ ## pVQA answer spaces
145
+
146
+ | Puzzle | `question_id` | Question | `options` | Rows |
147
+ |---|---|---|---|---:|
148
+ | chess | `q1` | Which quarter of the board is the white queen in? A=top-left B=top-right C=bottom-left D=bottom-right. | `[A, B, C, D]` | 100 |
149
+ | chess | `q2` | Which quarter of the board is the white bishop in? A=top-left B=top-right C=bottom-left D=bottom-right. | `[A, B, C, D]` | 100 |
150
+ | chess | `q3` | Is the leftmost white pawn in the top half or the bottom half of the board? | `[top, bottom]` | 100 |
151
+ | chess | `q4` | Is the white king above or below the black knight? | `[above, below]` | 100 |
152
+ | chess | `q5` | Are the white rook and the black king in the same row or the same column? | `[Yes, No]` | 100 |
153
+ | chess | `q6` | Are the white king and the black king on adjacent (touching) squares? | `[Yes, No]` | 100 |
154
+ | chess | `q7` | Is the white queen on the same rank, file, or diagonal as the black king? | `[Yes, No]` | 100 |
155
+ | chess | `q8` | Is there a white queen on the board? | `[Yes, No]` | 100 |
156
+ | nqueens | `q1` | Is the leftmost queen in the top half or the bottom half of the board? | `[top, bottom]` | 100 |
157
+ | nqueens | `q2` | Is the topmost queen in the left half or the right half of the board? | `[left, right]` | 100 |
158
+ | nqueens | `q3` | Is the leftmost queen above or below the rightmost queen? | `[above, below]` | 100 |
159
+ | nqueens | `q4` | Is the leftmost queen in the top, middle, or bottom third of the board? | `[top, middle, bottom]` | 100 |
160
+
161
+ Answer spaces are not uniform: 2-way, 3-way, 4-way all occur, with `chess/q1`, `chess/q2` and `nqueens/q4` non-binary.
162
+ That is why `options` is a column rather than an assumed `[Yes, No]`.
163
+
164
+ Questions are deliberately coordinate-free ("the leftmost queen", not "the queen
165
+ at row 4"), so a model must locate the referenced piece before it can answer.
166
+ Full specs, including how each answer was derived from the board, are in
167
+ `pvqa_questions.yaml`.
168
+
169
+ ## Notes and caveats
170
+
171
+ - **The two tasks do not share images.** pVQA chess boards are separately
172
+ rendered, not the segmentation chess images, and N-Queens is not part of the
173
+ 30-class label space. No image currently carries both a mask and a question.
174
+ - **`image_path` repeats for N-Queens pVQA.** Each of the 100 boards is asked 4
175
+ questions, so 4 rows share an `image_path` with distinct `id`s. Chess pVQA asks
176
+ one question per board.
177
+ - **Published N-Queens images are a derived render.** The sources are 1600×1600
178
+ JPEG, downscaled here to 512×512 with `PIL` `thumbnail(..., BILINEAR)` — the
179
+ same call the evaluation code applies, so these are the pixels models actually
180
+ saw. The originals remain the reference copy in the project repository.
181
+ - Segmentation splits are sampled from the source datasets with a fixed seed
182
+ (`42`) and are reproducible.
183
+ - `manifest.csv` maps `unified_id` to source task and split; `classes.yaml`
184
+ carries the class map and loss weights.
185
+
186
+ ## Files
187
+
188
+ | Path | Contents |
189
+ |---|---|
190
+ | `data/*.parquet` | the table — 10200 rows |
191
+ | `masks/{train,val,test}/*.png` | 9000 label maps, 8-bit, values `0..29` |
192
+ | `classes.yaml` | 30-class map + per-class loss weights |
193
+ | `manifest.csv` | `unified_id,source_task,source_id,split` |
194
+ | `pvqa_questions.yaml` | published question specs, nested by task |
195
 
196
  ## License
197
 
198
+ **CC BY 4.0.** If you use this dataset, please cite the PuzzleBench project.
 
val.tar → data/test-00000-of-00002.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:90cd8cafe864b6141ef8b4bc5b23d31b58f0ddb00f4bc7dea67559808adaf39b
3
- size 547921920
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e77c23d8d7ce22f558b3004cd2ac886d3ac662f4244972ca0290f475e1cebd75
3
+ size 469322308
train.tar → data/test-00001-of-00002.parquet RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:4d16dd80b5347827b0a38d284f9e282802776c5f728ebe326c3f1e772661de2f
3
- size 2218414080
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ef97051323ed9047975e9cda79f4d9598ca68bd988bfd9e29c54696a32020bf
3
+ size 140935857
data/train-00000-of-00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ac79221476342a4525910c182c9b228ec96a6b6e099667dd3d6bff35c2f50112
3
+ size 503330369
data/train-00001-of-00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1c3f4d3cda889d4b1376721436b30d77f32e88a3747a8eb1c8feef93d2f0ec09
3
+ size 503173685
data/train-00002-of-00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc6f8282f57344218f1daa42d6dddb4005038baa0145dd30e6137ac5be4dca2a
3
+ size 503037550
data/train-00003-of-00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d13609e471db655c529292b652e1374041ff619e25770378d4642946c060a9b5
3
+ size 503000353
data/train-00004-of-00005.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f47a8212ce759c6afa312d2de760f7cc7d8875d39cc2365c48e077ecbe46eaa
3
+ size 179462285
data/val-00000-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c1c9b94a83d4f02a82f018a5f634fde689959e73b583cfad694b92aa029162fd
3
+ size 503323406
data/val-00001-of-00002.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a210dd6bcb73140caf6acd78ea4be70d345fb99dea1aea60952bd1d1c10ea875
3
+ size 38051712
masks/test/chess_000001.png ADDED

Git LFS Details

  • SHA256: 27634e1fdb907ca5e9bc01946ed1b6180c52b8cca99e0115d72cedc2065cc866
  • Pointer size: 129 Bytes
  • Size of remote file: 6.07 kB
masks/test/chess_000005.png ADDED

Git LFS Details

  • SHA256: 049dd66ac12a43bc61240a8ea8213768bd2e841219cdcbbdcdb9f857c0ae9738
  • Pointer size: 129 Bytes
  • Size of remote file: 3.75 kB
masks/test/chess_000007.png ADDED

Git LFS Details

  • SHA256: 6712a440a20e687c64877d15edf0e58c5bf2342a15c81a97095f5d3dd3f2e5f6
  • Pointer size: 129 Bytes
  • Size of remote file: 6.63 kB
masks/test/chess_000009.png ADDED

Git LFS Details

  • SHA256: 972a5eb04a36ea64017850174d9da9faf14b8289ce167501b0741bd01d8ef75d
  • Pointer size: 129 Bytes
  • Size of remote file: 8.72 kB
masks/test/chess_000010.png ADDED

Git LFS Details

  • SHA256: a57ccf61c61c45e279daa0dcc59fed470f4bef12c44a277b786cb0b95aabb5ed
  • Pointer size: 129 Bytes
  • Size of remote file: 4.97 kB
masks/test/chess_000012.png ADDED

Git LFS Details

  • SHA256: b610ba6d244f91459ba9174ac7d1a6e4be14cb74107321c98e3c7b5e60174613
  • Pointer size: 129 Bytes
  • Size of remote file: 5.1 kB
masks/test/chess_000013.png ADDED

Git LFS Details

  • SHA256: 1228fe11a7588ac8f349bf0168bcce98cda326cfc026b9bd982b084dcdf92f85
  • Pointer size: 129 Bytes
  • Size of remote file: 7.5 kB
masks/test/chess_000015.png ADDED

Git LFS Details

  • SHA256: 763fb1ad0b05f22fcc8bf9bf64e344d56029b1bb41bfee89d5b3ba590f362616
  • Pointer size: 129 Bytes
  • Size of remote file: 6.78 kB
masks/test/chess_000016.png ADDED

Git LFS Details

  • SHA256: 3d5cd29823d687b28bd24d8aaeebf2e24a9b42235d3a14b5dda02c8c70ad3306
  • Pointer size: 129 Bytes
  • Size of remote file: 4.85 kB
masks/test/chess_000019.png ADDED

Git LFS Details

  • SHA256: 0af06e9cc736cf8114d975a16fb75b44317e9f6f5b661232a2254a5b843f713c
  • Pointer size: 129 Bytes
  • Size of remote file: 7.91 kB
masks/test/chess_000021.png ADDED

Git LFS Details

  • SHA256: 2b228500c005c375d60922f0184648d93c817c7842de0a3efb79d746ae37ac85
  • Pointer size: 129 Bytes
  • Size of remote file: 6.15 kB
masks/test/chess_000022.png ADDED

Git LFS Details

  • SHA256: ee5845e3e73ba11093aa2a44fff2cfb3c65de46d76dec3bbb268433efb75f456
  • Pointer size: 129 Bytes
  • Size of remote file: 7.75 kB
masks/test/chess_000034.png ADDED

Git LFS Details

  • SHA256: fe947714495d52aa176d41f3a4958c031f3d7abbd8480e0197b6ba7b31db2893
  • Pointer size: 129 Bytes
  • Size of remote file: 6.51 kB
masks/test/chess_000038.png ADDED

Git LFS Details

  • SHA256: e80a6652b32a50cfcd9c9950553af0032718da4b3dc8d576432ec6b0193fc862
  • Pointer size: 129 Bytes
  • Size of remote file: 4.49 kB
masks/test/chess_000039.png ADDED

Git LFS Details

  • SHA256: 70655b34692fcda59025297a578854b352305ebcb67fbbc32af90c163a4e214d
  • Pointer size: 129 Bytes
  • Size of remote file: 7.59 kB
masks/test/chess_000040.png ADDED

Git LFS Details

  • SHA256: ad8f3912822e5f1ef69e15a33e226e2b3986e27f17cb97187b5851f3c8f287f4
  • Pointer size: 129 Bytes
  • Size of remote file: 5.92 kB
masks/test/chess_000044.png ADDED

Git LFS Details

  • SHA256: 6d9960d46dc53f2e6c82930f77e790aea8b3227e740cd49f8e53013408ddcf74
  • Pointer size: 129 Bytes
  • Size of remote file: 6.91 kB
masks/test/chess_000048.png ADDED

Git LFS Details

  • SHA256: e9d15f6aaa242e7d3e222cf4685509fb5897d9bec8032a4dc43830b147ec3cae
  • Pointer size: 129 Bytes
  • Size of remote file: 7.03 kB
masks/test/chess_000053.png ADDED

Git LFS Details

  • SHA256: 9613ffd2838a609e5a3fec87a3b886bfd19e60971f81ffc235ae1b06db8802b1
  • Pointer size: 129 Bytes
  • Size of remote file: 6.94 kB
masks/test/chess_000057.png ADDED

Git LFS Details

  • SHA256: 20d1101e74dc2c7d039c7f967a20899d9221953f3eafb5793fc7c2e6ae5cc8ff
  • Pointer size: 129 Bytes
  • Size of remote file: 3.45 kB
masks/test/chess_000058.png ADDED

Git LFS Details

  • SHA256: dc3f02412ef6b8825a17d138a97a1e04ad231e6d443d772926e64aea835e6dd0
  • Pointer size: 129 Bytes
  • Size of remote file: 5.54 kB
masks/test/chess_000063.png ADDED

Git LFS Details

  • SHA256: 1644ee8ace0cb381194c3f7eb51c4d7b30338e390125e3fb3d3bdebb4203e5d4
  • Pointer size: 129 Bytes
  • Size of remote file: 8.34 kB
masks/test/chess_000065.png ADDED

Git LFS Details

  • SHA256: 5a3f0a62f029028787fccaa4118a2ec29fa8fcd857a405f83741c6970a27ce2b
  • Pointer size: 129 Bytes
  • Size of remote file: 4.76 kB
masks/test/chess_000070.png ADDED

Git LFS Details

  • SHA256: 4aa5155b599fc00d4783819d76d7da0f3fe951b54ae3372bc2a7263bdd2cfa1f
  • Pointer size: 129 Bytes
  • Size of remote file: 3.84 kB
masks/test/chess_000075.png ADDED

Git LFS Details

  • SHA256: ad63dbb36eb26d5aa39f659700677d003225523193b2eb511290bc55dcffaca4
  • Pointer size: 129 Bytes
  • Size of remote file: 5.49 kB
masks/test/chess_000077.png ADDED

Git LFS Details

  • SHA256: 312042ee4fc9b3895d4f057f827eb8fb989ad665216f198ffbf10a55223bb1ae
  • Pointer size: 129 Bytes
  • Size of remote file: 6.56 kB
masks/test/chess_000081.png ADDED

Git LFS Details

  • SHA256: 8cf6548c47b7ade45dd5a0f17fc09d7aec6b2d8f3fa652e07d6b40019017cd16
  • Pointer size: 129 Bytes
  • Size of remote file: 7.79 kB
masks/test/chess_000082.png ADDED

Git LFS Details

  • SHA256: 840db14c9ecf4e2bb187a3d7fa92caba92df600d80b4aa141fa361a641de3203
  • Pointer size: 129 Bytes
  • Size of remote file: 6.58 kB
masks/test/chess_000085.png ADDED

Git LFS Details

  • SHA256: 5ef1a1834a4fe454daa1657431997a541a684b8b660e6cd246dce579920de88e
  • Pointer size: 129 Bytes
  • Size of remote file: 6.84 kB
masks/test/chess_000087.png ADDED

Git LFS Details

  • SHA256: 7aac0a703dfd648d4acb5cf2e4532bf6c9b7e57cb40757819d21b2019168024f
  • Pointer size: 129 Bytes
  • Size of remote file: 5.46 kB
masks/test/chess_000090.png ADDED

Git LFS Details

  • SHA256: 4ccd738cff032885ef9bb6282ffb37a6cd6a4f1652ad098b1d032067a60f7e72
  • Pointer size: 129 Bytes
  • Size of remote file: 7.49 kB
masks/test/chess_000093.png ADDED

Git LFS Details

  • SHA256: 33e0d184dd6eac103514008d32461f8074018a9969bd2375eaefc460407699a7
  • Pointer size: 129 Bytes
  • Size of remote file: 7.23 kB
masks/test/chess_000095.png ADDED

Git LFS Details

  • SHA256: 7695fdb81ed17e01cb3f10eae0cd323f91e0275f471469b6270d07f61f39cd04
  • Pointer size: 129 Bytes
  • Size of remote file: 6.01 kB
masks/test/chess_000098.png ADDED

Git LFS Details

  • SHA256: b2e13ac2f39296e92bb3320007bdf835e05cb5afea8f5c33a78d31fbe3711a95
  • Pointer size: 129 Bytes
  • Size of remote file: 6.97 kB
masks/test/chess_000100.png ADDED

Git LFS Details

  • SHA256: f0e991e06c2c5338166c74a83c145140562542e77b07c61892918a63b6c63754
  • Pointer size: 129 Bytes
  • Size of remote file: 6.13 kB
masks/test/chess_000102.png ADDED

Git LFS Details

  • SHA256: 98f511fc41c0fb5734b2dff5d65b8cca179f1a8baceb58001e88b6a08c1eafd5
  • Pointer size: 129 Bytes
  • Size of remote file: 5.2 kB
masks/test/chess_000109.png ADDED

Git LFS Details

  • SHA256: a05b0b80248d2a7bf0373121ff36e28dcc36dc7cce609a531158467b317b0400
  • Pointer size: 129 Bytes
  • Size of remote file: 4.72 kB
masks/test/chess_000111.png ADDED

Git LFS Details

  • SHA256: dc24aa43beffe82483cb54d6d916ad9a11fdb92aaf887e6b18de3c826df968b1
  • Pointer size: 129 Bytes
  • Size of remote file: 5.06 kB
masks/test/chess_000116.png ADDED

Git LFS Details

  • SHA256: 4a30ed22759ebb09d232cc636161e6f19c0a1702118ddf9b37eae52d7f9997f0
  • Pointer size: 129 Bytes
  • Size of remote file: 5.91 kB
masks/test/chess_000120.png ADDED

Git LFS Details

  • SHA256: 13483e88fd91f4af9a80d3e802b0ef2b7fb4d6aad4b744c5c14eae913bec2d54
  • Pointer size: 129 Bytes
  • Size of remote file: 6.39 kB