Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- pytorch
|
| 5 |
+
- pytorch-lightning
|
| 6 |
+
- dem
|
| 7 |
+
- super-resolution
|
| 8 |
+
- remote-sensing
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# DEM Super-Resolution Model
|
| 12 |
+
|
| 13 |
+
This is a trained PyTorch Lightning model for super-resolving 30m SRTM DEMs to 10m resolution using Sentinel-2 imagery.
|
| 14 |
+
|
| 15 |
+
## Model Details
|
| 16 |
+
- **Architecture**: U-Net with ResNet34 encoder
|
| 17 |
+
- **Input Channels**: 7 (SRTM, RGB, NIR, NDVI, mask)
|
| 18 |
+
- **Output**: Residual corrections for DEM super-resolution
|
| 19 |
+
- **Training Data**: McKinley Mine LiDAR DEM
|
| 20 |
+
- **Inference**: Applied to Marrakech, Morocco
|
| 21 |
+
|
| 22 |
+
## Usage
|
| 23 |
+
```python
|
| 24 |
+
import torch
|
| 25 |
+
from your_model_loading_code import DeepDEMRefinement
|
| 26 |
+
|
| 27 |
+
model = DeepDEMRefinement.load_from_checkpoint("deepdem_model.ckpt")
|
| 28 |
+
# Use as needed
|