crumeike commited on
Commit
856aa59
·
verified ·
1 Parent(s): 5b93b6c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +60 -62
README.md CHANGED
@@ -35,8 +35,66 @@ size_categories:
35
  - **Multi-class Classification**: Classify building damage severity into 5 ordinal levels
36
  - **Damage Assessment**: Support automated post-disaster reconnaissance and response
37
 
38
- ### Languages
39
- Annotations are in English. Image content is geographic (building structures, damage patterns).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
 
41
  ## Dataset Structure
42
 
@@ -137,66 +195,6 @@ The dataset contains street-view imagery of buildings in disaster-affected areas
137
  - Geographic metadata is included for research purposes
138
  - Researchers should use appropriate care when publishing derived visualizations
139
 
140
- ---
141
-
142
- ## Quick Start
143
-
144
- ### Loading the Dataset
145
- ```python
146
- from datasets import load_dataset
147
-
148
- # Load full dataset
149
- dataset = load_dataset("crumeike/tornadonet-datasets")
150
-
151
- # Access specific split
152
- train_data = dataset["train"]
153
- val_data = dataset["validation"]
154
- test_data = dataset["test"]
155
- ```
156
-
157
- ### Using with YOLO
158
- ```python
159
- # Dataset is already in YOLO format
160
- # Annotation format: <class> <x_center> <y_center> <width> <height>
161
-
162
- # Example YOLO configuration (data.yaml)
163
- """
164
- path: /path/to/tornadonet
165
- train: images/train
166
- val: images/val
167
- test: images/test
168
-
169
- nc: 5 # number of classes
170
- names: ['DS0_Undamaged', 'DS1_Slight', 'DS2_Moderate', 'DS3_Extensive', 'DS4_Complete']
171
- """
172
- ```
173
-
174
- ### Evaluation Metrics
175
- For ordinal classification tasks, consider using:
176
- - **Standard Metrics**: mAP@0.5, F1-score, Precision, Recall
177
- - **Ordinal Metrics**:
178
- - Ordinal Top-k Accuracy
179
- - Mean Absolute Ordinal Error (MAOE)
180
- - Confusion matrices emphasizing near-miss errors
181
-
182
- ### Baseline Models
183
- Benchmark results on TornadoNet:
184
-
185
- | Model | mAP@0.5 | F1 Score | Ordinal Top-1 Acc | MAOE |
186
- |-------|---------|----------|-------------------|------|
187
- | YOLOv8n | 40.98% | 45.11% | 84.01% | 0.78 |
188
- | YOLOv8l | 42.09% | 46.41% | 84.19% | 0.78 |
189
- | YOLO11x | 46.05% | 49.40% | 85.20% | 0.76 |
190
- | RT-DETR-L | 39.87% | 44.77% | 88.13% | 0.65 |
191
-
192
- ### Ordinal Supervision Impact
193
- | Model | Configuration | mAP@0.5 | Δ vs Baseline | Ordinal Top-1 | MAOE |
194
- |-------|---------------|---------|---------------|---------------|------|
195
- | RT-DETR-L | ψ=0.5, K=1 | **44.70%** | **+4.8 pp** | **91.15%** | **0.56** |
196
-
197
- *See [full paper](https://arxiv.org/abs/2603.11557) for detailed experimental results and analysis.*
198
-
199
- ---
200
 
201
  ## Additional Information
202
 
 
35
  - **Multi-class Classification**: Classify building damage severity into 5 ordinal levels
36
  - **Damage Assessment**: Support automated post-disaster reconnaissance and response
37
 
38
+ ---
39
+
40
+ ## Quick Start
41
+
42
+ ### Loading the Dataset
43
+ ```python
44
+ from datasets import load_dataset
45
+
46
+ # Load full dataset
47
+ dataset = load_dataset("crumeike/tornadonet-datasets")
48
+
49
+ # Access specific split
50
+ train_data = dataset["train"]
51
+ val_data = dataset["validation"]
52
+ test_data = dataset["test"]
53
+ ```
54
+
55
+ ### Using with YOLO
56
+ ```python
57
+ # Dataset is already in YOLO format
58
+ # Annotation format: <class> <x_center> <y_center> <width> <height>
59
+
60
+ # Example YOLO configuration (data.yaml)
61
+ """
62
+ path: /path/to/tornadonet
63
+ train: images/train
64
+ val: images/val
65
+ test: images/test
66
+
67
+ nc: 5 # number of classes
68
+ names: ['DS0_Undamaged', 'DS1_Slight', 'DS2_Moderate', 'DS3_Extensive', 'DS4_Complete']
69
+ """
70
+ ```
71
+
72
+ ### Evaluation Metrics
73
+ For ordinal classification tasks, consider using:
74
+ - **Standard Metrics**: mAP@0.5, F1-score, Precision, Recall
75
+ - **Ordinal Metrics**:
76
+ - Ordinal Top-k Accuracy
77
+ - Mean Absolute Ordinal Error (MAOE)
78
+ - Confusion matrices emphasizing near-miss errors
79
+
80
+ ### Baseline Models
81
+ Benchmark results on TornadoNet:
82
+
83
+ | Model | mAP@0.5 | F1 Score | Ordinal Top-1 Acc | MAOE |
84
+ |-------|---------|----------|-------------------|------|
85
+ | YOLOv8n | 40.98% | 45.11% | 84.01% | 0.78 |
86
+ | YOLOv8l | 42.09% | 46.41% | 84.19% | 0.78 |
87
+ | YOLO11x | 46.05% | 49.40% | 85.20% | 0.76 |
88
+ | RT-DETR-L | 39.87% | 44.77% | 88.13% | 0.65 |
89
+
90
+ ### Ordinal Supervision Impact
91
+ | Model | Configuration | mAP@0.5 | Δ vs Baseline | Ordinal Top-1 | MAOE |
92
+ |-------|---------------|---------|---------------|---------------|------|
93
+ | RT-DETR-L | ψ=0.5, K=1 | **44.70%** | **+4.8 pp** | **91.15%** | **0.56** |
94
+
95
+ *See [full paper](https://arxiv.org/abs/2603.11557) for detailed experimental results and analysis.*
96
+
97
+ ---
98
 
99
  ## Dataset Structure
100
 
 
195
  - Geographic metadata is included for research purposes
196
  - Researchers should use appropriate care when publishing derived visualizations
197
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
 
199
  ## Additional Information
200