Improve dataset card: add task categories and links to paper and code
Browse filesHi! I'm Niels from the Hugging Face community science team. I noticed this dataset is part of the "RobustSpring" paper. This PR improves the dataset card by:
- Adding the `task_categories` to the metadata (`depth-estimation` and `other`).
- Linking the README to the official [Hugging Face paper page](https://huggingface.co/papers/2505.09368).
- Adding a link to the associated GitHub repository for data generation tools.
- Updating the citation section with the latest paper info.
README.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
dataset_info:
|
| 4 |
features:
|
| 5 |
- name: image1_path
|
|
@@ -35,8 +42,6 @@ configs:
|
|
| 35 |
data_files:
|
| 36 |
- split: test
|
| 37 |
path: data/test-*
|
| 38 |
-
language:
|
| 39 |
-
- en
|
| 40 |
tags:
|
| 41 |
- computer-vision
|
| 42 |
- robustness
|
|
@@ -44,23 +49,17 @@ tags:
|
|
| 44 |
- optical-flow
|
| 45 |
- scene-flow
|
| 46 |
- stereo
|
| 47 |
-
size_categories:
|
| 48 |
-
- 100K<n<1M
|
| 49 |
---
|
| 50 |
|
| 51 |
# RobustSpring: Benchmarking Robustness to Image Corruptions for Optical Flow, Scene Flow and Stereo
|
| 52 |
|
|
|
|
|
|
|
| 53 |
This dataset provides structured **metadata only** for the [RobustSpring](https://spring-benchmark.org) dataset. All image samples are referenced by relative file paths, and must be paired with local image data downloaded separately from the public release site.
|
| 54 |
|
| 55 |
* **Dataset on the Hub**: [jeschmalfuss/RobustSpring](https://huggingface.co/datasets/jeschmalfuss/RobustSpring)
|
| 56 |
-
* **Image Data**: [RobustSpring](https://doi.org/10.18419/DARUS-5047)
|
| 57 |
|
| 58 |
-
For the related [research](https://www.arxiv.org/abs/2505.09368) see
|
| 59 |
-
```
|
| 60 |
-
RobustSpring: Benchmarking Robustness to Image Corruptions for Optical Flow, Scene Flow and Stereo
|
| 61 |
-
Jenny Schmalfuss*, Victor Oei*, Lukas Mehl, Madlen Bartsch, Shashank Agnihotri, Margret Keuper, Andrés Bruhn
|
| 62 |
-
https://doi.org/10.48550/arXiv.2505.09368
|
| 63 |
-
```
|
| 64 |
RobustSpring is an image-corruption dataset for optical flow, scene flow and stereo, that applies 20 different image corruption to the test split of the [Spring](https://spring-benchmark.org) dataset.
|
| 65 |
The combined Spring and RobustSpring website is at [spring-benchmark.org](https://spring-benchmark.org)
|
| 66 |
|
|
@@ -161,7 +160,7 @@ from datasets import load_dataset
|
|
| 161 |
dataset = load_dataset("jeschmalfuss/RobustSpring", split="test") # all samples
|
| 162 |
```
|
| 163 |
|
| 164 |
-
## 3. Filtering by Data Type
|
| 165 |
|
| 166 |
You can filter the dataset to only retrieve the type of samples you're interested in: optical flow, scene flow or stereo.
|
| 167 |
|
|
@@ -185,10 +184,28 @@ img1 = Image.open(os.path.join(base_path, sample["image1_path"]))
|
|
| 185 |
img2 = Image.open(os.path.join(base_path, sample["image2_path"]))
|
| 186 |
```
|
| 187 |
|
| 188 |
-
|
| 189 |
---
|
| 190 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 191 |
|
| 192 |
## License
|
| 193 |
|
| 194 |
-
The RobustSpring dataset is licensed under CC-BY-4.0
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
license: cc-by-4.0
|
| 5 |
+
size_categories:
|
| 6 |
+
- 100K<n<1M
|
| 7 |
+
task_categories:
|
| 8 |
+
- depth-estimation
|
| 9 |
+
- other
|
| 10 |
dataset_info:
|
| 11 |
features:
|
| 12 |
- name: image1_path
|
|
|
|
| 42 |
data_files:
|
| 43 |
- split: test
|
| 44 |
path: data/test-*
|
|
|
|
|
|
|
| 45 |
tags:
|
| 46 |
- computer-vision
|
| 47 |
- robustness
|
|
|
|
| 49 |
- optical-flow
|
| 50 |
- scene-flow
|
| 51 |
- stereo
|
|
|
|
|
|
|
| 52 |
---
|
| 53 |
|
| 54 |
# RobustSpring: Benchmarking Robustness to Image Corruptions for Optical Flow, Scene Flow and Stereo
|
| 55 |
|
| 56 |
+
[Paper](https://huggingface.co/papers/2505.09368) | [Project Page](https://spring-benchmark.org) | [Code](https://github.com/cv-stuttgart/sceneflow_from_blender)
|
| 57 |
+
|
| 58 |
This dataset provides structured **metadata only** for the [RobustSpring](https://spring-benchmark.org) dataset. All image samples are referenced by relative file paths, and must be paired with local image data downloaded separately from the public release site.
|
| 59 |
|
| 60 |
* **Dataset on the Hub**: [jeschmalfuss/RobustSpring](https://huggingface.co/datasets/jeschmalfuss/RobustSpring)
|
| 61 |
+
* **Image Data**: [RobustSpring (DARUS)](https://doi.org/10.18419/DARUS-5047)
|
| 62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
RobustSpring is an image-corruption dataset for optical flow, scene flow and stereo, that applies 20 different image corruption to the test split of the [Spring](https://spring-benchmark.org) dataset.
|
| 64 |
The combined Spring and RobustSpring website is at [spring-benchmark.org](https://spring-benchmark.org)
|
| 65 |
|
|
|
|
| 160 |
dataset = load_dataset("jeschmalfuss/RobustSpring", split="test") # all samples
|
| 161 |
```
|
| 162 |
|
| 163 |
+
### 3. Filtering by Data Type
|
| 164 |
|
| 165 |
You can filter the dataset to only retrieve the type of samples you're interested in: optical flow, scene flow or stereo.
|
| 166 |
|
|
|
|
| 184 |
img2 = Image.open(os.path.join(base_path, sample["image2_path"]))
|
| 185 |
```
|
| 186 |
|
|
|
|
| 187 |
---
|
| 188 |
|
| 189 |
+
## Citation
|
| 190 |
+
|
| 191 |
+
If you use this dataset, please cite the following papers:
|
| 192 |
+
|
| 193 |
+
```bibtex
|
| 194 |
+
@article{schmalfuss2025robustspring,
|
| 195 |
+
title={RobustSpring: Benchmarking Robustness to Image Corruptions for Optical Flow, Scene Flow and Stereo},
|
| 196 |
+
author={Schmalfuss, Jenny and Oei, Victor and Mehl, Lukas and Bartsch, Madlen and Agnihotri, Shashank and Keuper, Margret and Bruhn, Andr{\\'e}s},
|
| 197 |
+
journal={arXiv preprint arXiv:2505.09368},
|
| 198 |
+
year={2025}
|
| 199 |
+
}
|
| 200 |
+
|
| 201 |
+
@InProceedings{Mehl2023_Spring,
|
| 202 |
+
author = {Lukas Mehl and Jenny Schmalfuss and Azin Jahedi and Yaroslava Nalivayko and Andr\'es Bruhn},
|
| 203 |
+
title = {Spring: A High-Resolution High-Detail Dataset and Benchmark for Scene Flow, Optical Flow and Stereo},
|
| 204 |
+
booktitle = {Proc. IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
|
| 205 |
+
year = {2023}
|
| 206 |
+
}
|
| 207 |
+
```
|
| 208 |
|
| 209 |
## License
|
| 210 |
|
| 211 |
+
The RobustSpring dataset is licensed under CC-BY-4.0
|