Datasets:
Update README.md
Browse files
README.md
CHANGED
|
@@ -137,9 +137,6 @@ at load time.
|
|
| 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 |
|
|
@@ -158,30 +155,7 @@ read together with `puzzle`. Per-class loss weights live in `classes.yaml`.
|
|
| 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 |
-
|
| 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 |
|
|
|
|
| 137 |
| 28 | `disk_4` | hanoi |
|
| 138 |
| 29 | `disk_5` | hanoi |
|
| 139 |
|
|
|
|
|
|
|
|
|
|
| 140 |
|
| 141 |
## pVQA answer spaces
|
| 142 |
|
|
|
|
| 155 |
| nqueens | `q3` | Is the leftmost queen above or below the rightmost queen? | `[above, below]` | 100 |
|
| 156 |
| nqueens | `q4` | Is the leftmost queen in the top, middle, or bottom third of the board? | `[top, middle, bottom]` | 100 |
|
| 157 |
|
| 158 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 159 |
|
| 160 |
## Files
|
| 161 |
|