Views
No views yet
"When Less Is More: Simplicity Beats Complexity for Physics-Constrained InSAR Phase Unwrapping" Prabhjot Singh, Manmeet Singh Oral Presentation - ML4RS @ ICLR 2026
| File | Architecture | Params | R² | RMSE (cm) | Latency (ms) |
|---|---|---|---|---|---|
vanilla_unet_model.pth | Vanilla U-Net ✅ | 7.76M | 0.834 | 1.009 | 2.92 |
enhanced_unet_model.pth | Enhanced U-Net (SE blocks) | 8.29M | 0.786 | 1.149 | 6.35 |
attention_unet_model.pth | Attention U-Net | 11.37M | 0.622 | 1.528 | 7.08 |
hybrid_model.pth | Hybrid Multi-Scale (ASPP) | 17.21M | 0.588 | 1.595 | 7.13 |
✅ Vanilla U-Net is the recommended model - best performance, smallest size, fastest inference.
1# Install HF CLI
2pip install huggingface_hub
3
4# Download a specific model
5from huggingface_hub import hf_hub_download
6hf_hub_download(repo_id="Prabhjotschugh/InSAR-Phase-Unwrapping-Models",
7 filename="vanilla_unet_model.pth",
8 local_dir="./models")1git clone https://github.com/prabhjotschugh/When-Less-is-More-InSAR-Phase-Unwrapping.git
2cd When-Less-is-More-InSAR-Phase-Unwrapping
3pip install -r requirements.txt1import torch
2import sys
3sys.path.append('./train') # path to training scripts
4from train_vanilla_unet import VanillaInSAR_UNet
5
6# Load checkpoint
7checkpoint = torch.load('models/vanilla_unet_model.pth', map_location='cpu')
8
9# Initialize model
10model = VanillaInSAR_UNet(in_channels=6, out_channels=1, base_channels=32, dropout=0.0)
11model.load_state_dict(checkpoint['model'])
12model.eval()
13
14# Load normalization stats
15stats = checkpoint['stats']
16print(f"Trained for {checkpoint['epoch']+1} epochs")
17print(f"Best validation loss: {checkpoint['best_val_loss']:.5f}")| Channel | Description |
|---|---|
| 0 | sin(wrapped phase) |
| 1 | cos(wrapped phase) |
| 2 | Interferometric coherence γ |
| 3 | East LOS unit vector eₑ |
| 4 | North LOS unit vector eₙ |
| 5 | Up LOS unit vector e_U |
1@inproceedings{
2 singh2026when,
3 title={When Less Is More: Simplicity Beats Complexity for Physics-Constrained In{SAR} Phase Unwrapping},
4 author={Prabhjot Singh and Manmeet Singh},
5 booktitle={4th ICLR Workshop on Machine Learning for Remote Sensing (Main Track)},
6 year={2026},
7 url={https://openreview.net/forum?id=liJldeR5ZX}
8}