Update README.
Browse files
README.md
CHANGED
|
@@ -31,3 +31,18 @@ configs:
|
|
| 31 |
- split: test
|
| 32 |
path: data/test-*
|
| 33 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
- split: test
|
| 32 |
path: data/test-*
|
| 33 |
---
|
| 34 |
+
|
| 35 |
+
## Arrow Pointing Extrapolation
|
| 36 |
+
|
| 37 |
+
This dataset contains the exact images used for the extrapolation experiments in [pLSTM](https://arxiv.org/abs/2506.11997).
|
| 38 |
+
It is a synthetic dataset of arrows pointing to circles and should measure how well an image model can learn the classification
|
| 39 |
+
'if the arrow points to the circle' at small (192x192) scales and extrapolate/generalize (without previous resizing of the image input)
|
| 40 |
+
to larger scales (384x384).
|
| 41 |
+
|
| 42 |
+
Note that for the correct validation and test extrapolation subsets, you have to filter for the larger images:
|
| 43 |
+
```
|
| 44 |
+
from datasets import load_dataset
|
| 45 |
+
ds = load_dataset('ml-jku/arrow_pointing_extrapolation')
|
| 46 |
+
ds_val_ext = ds['validation'].filter(lambda sample: sample['image'].size == (384, 384))
|
| 47 |
+
ds_test_ext = ds['test'].filter(lambda sample: sample['image'].size == (384, 384))
|
| 48 |
+
```
|