Add dataset card, paper link, and sample usage

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +61 -3
README.md CHANGED
@@ -1,3 +1,61 @@
1
- ---
2
- license: cc-by-nc-sa-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - object-detection
5
+ ---
6
+
7
+ # TornadoNet: Real-Time Building Damage Detection with Ordinal Supervision
8
+
9
+ TornadoNet is a comprehensive benchmark for automated street-level building damage assessment. It contains 3,333 high-resolution geotagged images and 8,890 annotated building instances from the 2021 Midwest tornado outbreak.
10
+
11
+ - **Paper:** [TornadoNet: Real-Time Building Damage Detection with Ordinal Supervision](https://huggingface.co/papers/2603.11557)
12
+ - **GitHub:** [https://github.com/crumeike/TornadoNet](https://github.com/crumeike/TornadoNet)
13
+
14
+ ## Dataset Summary
15
+ The dataset provides building instances annotated with a five-level damage classification framework based on IN-CORE damage states:
16
+
17
+ | Class | Label | Description |
18
+ |-------|-------|-------------|
19
+ | DS0 | Undamaged | No visible damage |
20
+ | DS1 | Slight | Minor roof/window damage |
21
+ | DS2 | Moderate | Significant roof damage |
22
+ | DS3 | Extensive | Major structural damage |
23
+ | DS4 | Complete | Total collapse |
24
+
25
+ ## Sample Usage
26
+ You can download the dataset using the `huggingface_hub` library:
27
+
28
+ ```python
29
+ from huggingface_hub import snapshot_download
30
+
31
+ snapshot_download(
32
+ repo_id="crumeike/tornadonet-datasets",
33
+ repo_type="dataset",
34
+ local_dir="./data"
35
+ )
36
+ ```
37
+
38
+ ## Dataset Structure
39
+ The dataset follows the YOLO format:
40
+ ```
41
+ data/
42
+ ├── images/
43
+ │ ├── train/
44
+ │ ├── val/
45
+ │ └── test/
46
+ ├── labels/
47
+ │ ├── train/
48
+ │ ├── val/
49
+ │ └── test/
50
+ └── tornadonet.yaml
51
+ ```
52
+
53
+ ## Citation
54
+ ```bibtex
55
+ @article{umeike2026tornadonet,
56
+ title={TornadoNet: Real-Time Building Damage Detection with Ordinal Supervision},
57
+ author={Umeike, Robinson and Pham, Cuong and Hausen, Ryan and Dao, Thang and Crawford, Shane and Brown-Giammanco, Tanya and Lemson, Gerard and van de Lindt, John and Johnston, Blythe and Mitschang, Arik and Do, Trung},
58
+ journal={arXiv preprint arXiv:2603.11557},
59
+ year={2026}
60
+ }
61
+ ```