Add pipeline tag and improve metadata
Browse filesHi! I'm Niels from the Hugging Face community team.
This PR improves the model card metadata by:
1. Adding the `image-to-image` pipeline tag to help users discover the model when filtering by task.
2. Specifying `pytorch` as the `library_name`.
3. Linking the model card to the associated paper on the Hugging Face Hub: [When Less Is More: Simplicity Beats Complexity for Physics-Constrained InSAR Phase Unwrapping](https://huggingface.co/papers/2605.00896).
I've also kept the usage snippets and architecture details found in your repository.
README.md
CHANGED
|
@@ -1,14 +1,15 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
|
|
|
|
|
|
| 3 |
tags:
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
- ICLR2026
|
| 12 |
---
|
| 13 |
|
| 14 |
# 🛰️ InSAR Phase Unwrapping - Pretrained Models
|
|
@@ -19,7 +20,7 @@ Pretrained weights for all four U-Net architectural variants from:
|
|
| 19 |
> Prabhjot Singh, Manmeet Singh
|
| 20 |
> **Oral Presentation - ML4RS @ ICLR 2026**
|
| 21 |
|
| 22 |
-
📄 [Paper (OpenReview)](https://openreview.net/forum?id=liJldeR5ZX) | 💻 [Code (GitHub)](https://github.com/prabhjotschugh/When-Less-is-More-InSAR-Phase-Unwrapping)
|
| 23 |
|
| 24 |
---
|
| 25 |
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-4.0
|
| 3 |
+
library_name: pytorch
|
| 4 |
+
pipeline_tag: image-to-image
|
| 5 |
tags:
|
| 6 |
+
- InSAR
|
| 7 |
+
- phase-unwrapping
|
| 8 |
+
- remote-sensing
|
| 9 |
+
- geophysics
|
| 10 |
+
- U-Net
|
| 11 |
+
- ML4RS
|
| 12 |
+
- ICLR2026
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# 🛰️ InSAR Phase Unwrapping - Pretrained Models
|
|
|
|
| 20 |
> Prabhjot Singh, Manmeet Singh
|
| 21 |
> **Oral Presentation - ML4RS @ ICLR 2026**
|
| 22 |
|
| 23 |
+
📄 [Paper (Hugging Face)](https://huggingface.co/papers/2605.00896) | 📄 [Paper (OpenReview)](https://openreview.net/forum?id=liJldeR5ZX) | 💻 [Code (GitHub)](https://github.com/prabhjotschugh/When-Less-is-More-InSAR-Phase-Unwrapping)
|
| 24 |
|
| 25 |
---
|
| 26 |
|