Datasets:
add: readme file structure
#1
by Afedotov4 - opened
README.md
CHANGED
|
@@ -12,9 +12,83 @@ tags:
|
|
| 12 |
size_categories:
|
| 13 |
- n<1K
|
| 14 |
---
|
| 15 |
-
|
| 16 |
**Official Dataset for BMRS:** Bongard–Maximov Problems for Remote Sensing [Preprints.org](https://www.preprints.org/manuscript/202606.1484)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
## Citation
|
| 19 |
```
|
| 20 |
@article{202606.1484,
|
|
@@ -28,4 +102,5 @@ size_categories:
|
|
| 28 |
journal = {Preprints}
|
| 29 |
}
|
| 30 |
```
|
| 31 |
-
|
|
|
|
|
|
| 12 |
size_categories:
|
| 13 |
- n<1K
|
| 14 |
---
|
| 15 |
+
# BMRS: Bongard-Maximov Problems for Remote Sensing
|
| 16 |
**Official Dataset for BMRS:** Bongard–Maximov Problems for Remote Sensing [Preprints.org](https://www.preprints.org/manuscript/202606.1484)
|
| 17 |
+
**Official Code:** [GitHub]().
|
| 18 |
+
## Contents
|
| 19 |
+
This dataset includes:
|
| 20 |
+
### BMRS/
|
| 21 |
+
Bongard problems are stored as complete collages of images and separate images.
|
| 22 |
+
For each Bongard Problem:
|
| 23 |
+
- **right/** - all right images
|
| 24 |
+
- **left/** - all left images
|
| 25 |
+
- **pairs/** - image pairs
|
| 26 |
+
- **collage.png** - complete problem
|
| 27 |
+
- **left.png** - left side collage
|
| 28 |
+
- **right.png** - right side collage
|
| 29 |
+
### /LLM-as-a-Judge
|
| 30 |
+
Additional data needed to run the benchmark.
|
| 31 |
+
- **answer_examples_en.json** - correct and incorrect answers examples
|
| 32 |
+
- **judge_system_prompt_en.txt** - base prompt for the judge
|
| 33 |
+
- **reference_answers_en.json** - reference correct answers
|
| 34 |
+
- **task_type_judge_prompts_en.json** - task type specific prompts for judge
|
| 35 |
+
- **tasks_en.json** - task types list for each problem
|
| 36 |
+
## Dataset Structure
|
| 37 |
+
```
|
| 38 |
|
| 39 |
+
BMRS/
|
| 40 |
+
├── BMRS/
|
| 41 |
+
│ ├── bb_m_01/
|
| 42 |
+
│ ├── left/
|
| 43 |
+
│ │ ├── im0.png
|
| 44 |
+
│ │ ├── ...
|
| 45 |
+
│ │ └── im5.png
|
| 46 |
+
│ ├── pairs/
|
| 47 |
+
│ │ ├── im0.png
|
| 48 |
+
│ │ ├── ...
|
| 49 |
+
│ │ └── im5.png
|
| 50 |
+
│ ├── right/
|
| 51 |
+
│ │ ├── im0.png
|
| 52 |
+
│ │ ├── ...
|
| 53 |
+
│ │ └── im5.png
|
| 54 |
+
│ ├── collage.png
|
| 55 |
+
│ ├── left.png
|
| 56 |
+
│ └── right.png
|
| 57 |
+
│ ├── ...
|
| 58 |
+
│ └── bb_s_59/
|
| 59 |
+
│ ├── left/
|
| 60 |
+
│ │ ├── im0.png
|
| 61 |
+
│ │ ├── ...
|
| 62 |
+
│ │ └── im5.png
|
| 63 |
+
│ ├── pairs/
|
| 64 |
+
│ │ ├── im0.png
|
| 65 |
+
│ │ ├── ...
|
| 66 |
+
│ │ └── im5.png
|
| 67 |
+
│ ├── right/
|
| 68 |
+
│ │ ├── im0.png
|
| 69 |
+
│ │ ├── ...
|
| 70 |
+
│ │ └── im5.png
|
| 71 |
+
│ ├── collage.png
|
| 72 |
+
│ ├── left.png
|
| 73 |
+
│ └── right.png
|
| 74 |
+
├── LLM-as-a-Judge/
|
| 75 |
+
│ ├── answer_examples_en.json
|
| 76 |
+
│ ├── judge_system_prompt_en.txt
|
| 77 |
+
│ ├── reference_answers_en.json
|
| 78 |
+
│ ├── task_type_judge_prompts_en.json
|
| 79 |
+
│ └── tasks_en.json
|
| 80 |
+
├── data/
|
| 81 |
+
└── test.parquet
|
| 82 |
+
prompting_strategies.json
|
| 83 |
+
```
|
| 84 |
+
## Changelog
|
| 85 |
+
## Data Source
|
| 86 |
+
AID: Xia, Gui-Song, et al. "AID: A benchmark data set for performance evaluation of aerial scene classification." _IEEE Transactions on Geoscience and Remote Sensing_ 55.7 (2017): 3965-3981.
|
| 87 |
+
VisDrone: Zhu, Pengfei, et al. "Detection and tracking meet drones challenge." _IEEE transactions on pattern analysis and machine intelligence_ 44.11 (2021): 7380-7399.
|
| 88 |
+
DOTA: Ding, Jian, et al. "Object detection in aerial images: A large-scale benchmark and challenges." _IEEE transactions on pattern analysis and machine intelligence_ 44.11 (2021): 7778-7796.
|
| 89 |
+
MLRSNet: Qi, Xiaoman, et al. "MLRSNet: A multi-label high spatial resolution remote sensing dataset for semantic scene understanding." _ISPRS Journal of Photogrammetry and Remote Sensing_ 169 (2020): 337-350.
|
| 90 |
+
HyperHazeOff: Nikonorov, Artem, et al. "HyperHazeOff: Hyperspectral Remote Sensing Image Dehazing Benchmark." _Journal of Imaging_ 11.12 (2025): 422.
|
| 91 |
+
WAID: Mou, Chao, et al. "Waid: A large-scale dataset for wildlife detection with drones." _Applied Sciences_ 13.18 (2023): 10397.
|
| 92 |
## Citation
|
| 93 |
```
|
| 94 |
@article{202606.1484,
|
|
|
|
| 102 |
journal = {Preprints}
|
| 103 |
}
|
| 104 |
```
|
| 105 |
+
## License
|
| 106 |
+
This dataset is released under license: [cc-by-4.0](https://creativecommons.org/licenses/by/4.0/)
|