Update README.md
Browse files
README.md
CHANGED
@@ -49,26 +49,47 @@ A typical data instance has the following structure:
|
|
49 |
```
|
50 |
|
51 |
## Data Splits / Subsets
|
52 |
-
|
53 |
There are 6 different subsets, 3 for CLEVR-Easy (CLEVR-Easy-K10, CLEVR-Easy-K30, CLEVR-Easy-K50) and 3 for CLEVR (CLEVR-4-K10, CLEVR-4-K30, CLEVR-4-K50). For CLEVR-Easy only color and shape are relevant for the digit mapping while for CLEVR also material and size relevant are. K indicates how many cells are empty in the sudoku, i.e. K10 means that there are 10 empty cells. Each subset contains 1,000 puzzles. Currently, there are no separate training/validation/test splits within each subset.
|
54 |
|
55 |
# Dataset Creation
|
56 |
-
|
57 |
## Curation Rationale
|
58 |
|
59 |
Goal: Combine the compositional “CLEVR”-style visual complexity with the logical constraints of Sudoku. This setup pushes models to perform both visual recognition (understanding shapes, colors, etc.) and abstract reasoning (solving Sudoku).
|
60 |
|
61 |
## Source Data
|
62 |
-
|
63 |
Synthetic Generation: The images are created in a CLEVR-like manner, programmatically generated with variations in shape, color, position, etc.
|
64 |
Sudoku Logic: Each puzzle is automatically generated and there exists exactly one solution to the puzzle.
|
65 |
|
66 |
## Annotations
|
67 |
-
|
68 |
Automatic Generation: Since the dataset is synthetic, the puzzle solutions are known programmatically. No human annotation is required for the puzzle solutions.
|
69 |
Attributes: Each digit (1–9) is associated with one or more visual properties (e.g., color = "red", shape = "cube"). These are also generated systematically.
|
70 |
|
71 |
## Personal and Sensitive Information
|
72 |
-
|
73 |
None: The dataset is purely synthetic, containing no personal or demographic data.
|
74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
49 |
```
|
50 |
|
51 |
## Data Splits / Subsets
|
|
|
52 |
There are 6 different subsets, 3 for CLEVR-Easy (CLEVR-Easy-K10, CLEVR-Easy-K30, CLEVR-Easy-K50) and 3 for CLEVR (CLEVR-4-K10, CLEVR-4-K30, CLEVR-4-K50). For CLEVR-Easy only color and shape are relevant for the digit mapping while for CLEVR also material and size relevant are. K indicates how many cells are empty in the sudoku, i.e. K10 means that there are 10 empty cells. Each subset contains 1,000 puzzles. Currently, there are no separate training/validation/test splits within each subset.
|
53 |
|
54 |
# Dataset Creation
|
|
|
55 |
## Curation Rationale
|
56 |
|
57 |
Goal: Combine the compositional “CLEVR”-style visual complexity with the logical constraints of Sudoku. This setup pushes models to perform both visual recognition (understanding shapes, colors, etc.) and abstract reasoning (solving Sudoku).
|
58 |
|
59 |
## Source Data
|
|
|
60 |
Synthetic Generation: The images are created in a CLEVR-like manner, programmatically generated with variations in shape, color, position, etc.
|
61 |
Sudoku Logic: Each puzzle is automatically generated and there exists exactly one solution to the puzzle.
|
62 |
|
63 |
## Annotations
|
|
|
64 |
Automatic Generation: Since the dataset is synthetic, the puzzle solutions are known programmatically. No human annotation is required for the puzzle solutions.
|
65 |
Attributes: Each digit (1–9) is associated with one or more visual properties (e.g., color = "red", shape = "cube"). These are also generated systematically.
|
66 |
|
67 |
## Personal and Sensitive Information
|
|
|
68 |
None: The dataset is purely synthetic, containing no personal or demographic data.
|
69 |
|
70 |
+
# Usage
|
71 |
+
## Loading the Dataset
|
72 |
+
|
73 |
+
Example usage:
|
74 |
+
```python
|
75 |
+
from datasets import load_dataset
|
76 |
+
|
77 |
+
dataset = load_dataset("AIML-TUDA/CLEVR-Sudoku", "CLEVR-Easy-K10")
|
78 |
+
print(dataset[0])
|
79 |
+
```
|
80 |
+
|
81 |
+
The second argument ("CLEVR-Easy-K10", "CLEVR-Easy-K30", etc.) corresponds to the 6 different subsets.
|
82 |
+
Each subset has 1,000 puzzles.
|
83 |
+
|
84 |
+
# Citation
|
85 |
+
|
86 |
+
If you use or reference this dataset in your work, please cite the following:
|
87 |
+
```
|
88 |
+
@article{stammer2024neural,
|
89 |
+
title={Neural Concept Binder},
|
90 |
+
author={Stammer, Wolfgang and W{\"u}st, Antonia and Steinmann, David and Kersting, Kristian},
|
91 |
+
journal={Advances in Neural Information Processing Systems},
|
92 |
+
year={2024}
|
93 |
+
}
|
94 |
+
```
|
95 |
+
|