Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
license: mit
|
| 4 |
+
tags:
|
| 5 |
+
- change-detection
|
| 6 |
+
- remote-sensing
|
| 7 |
+
- eo-sar
|
| 8 |
+
- pytorch
|
| 9 |
+
- segmentation
|
| 10 |
+
datasets:
|
| 11 |
+
- doron333/change-detection-dataset
|
| 12 |
+
metrics:
|
| 13 |
+
- iou
|
| 14 |
+
- precision
|
| 15 |
+
- recall
|
| 16 |
+
- f1
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# Binary Change Detection (EO-SAR Fusion)
|
| 20 |
+
|
| 21 |
+
This model is a **Siamese UNet** designed for binary change detection using fused Electro-Optical (EO) and Synthetic Aperture Radar (SAR) satellite imagery.
|
| 22 |
+
|
| 23 |
+
## Model Description
|
| 24 |
+
The architecture uses dual weight-shared **ResNet-34** encoders to extract multi-modal features from pre-event RGB (EO) and post-event grayscale (SAR) images. Feature differences are fused via skip connections into a UNet decoder.
|
| 25 |
+
|
| 26 |
+
- **Encoder:** ResNet-34 (Pre-trained on ImageNet)
|
| 27 |
+
- **Loss Function:** Combined Focal Loss + Dice Loss (Optimized for 58:1 class imbalance)
|
| 28 |
+
- **Input Resolution:** 256x256
|
| 29 |
+
|
| 30 |
+
## Intended Uses
|
| 31 |
+
This model is intended for rapid disaster damage assessment where pre-event optical data and post-event SAR data are available.
|
| 32 |
+
|
| 33 |
+
## Training Results (Validation Set)
|
| 34 |
+
- **IoU:** ~27.73%
|
| 35 |
+
- **F1 Score:** ~43.42%
|
| 36 |
+
- **Precision:** ~35.79%
|
| 37 |
+
- **Recall:** ~55.18%
|
| 38 |
+
|
| 39 |
+
## How to Use
|
| 40 |
+
The model expects a 3-channel EO image (Pre-event) and a 1-channel SAR image (Post-event) as inputs.
|