Improve model card metadata and pipeline tag
Browse filesHi! This PR improves the model card for **PW-FouCast** by:
- Adding the `time-series-forecasting` pipeline tag to the YAML metadata.
- Moving the `arxiv` ID from the YAML section to the Markdown section as requested by Hugging Face documentation standards.
- Maintaining the existing code usage and model overview while ensuring formatting consistency.
README.md
CHANGED
|
@@ -1,25 +1,26 @@
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
-
|
| 4 |
tags:
|
| 5 |
-
-
|
|
|
|
|
|
|
| 6 |
---
|
|
|
|
| 7 |
# PW-FouCast: Pangu-Weather-guided Fourier-domain foreCast
|
| 8 |
|
| 9 |
-
[//]: # (Add badges here if desired, e.g., for License or Paper)
|
| 10 |
[](https://arxiv.org/abs/2603.21768)
|
| 11 |
[](https://github.com/Onemissed/PW-FouCast)
|
| 12 |
[](https://attend.ieee.org/wcci-2026/)
|
| 13 |
|
| 14 |
-
This is the official Hugging Face repository for **PW-FouCast**, a novel frequency-domain fusion framework designed to extend precipitation nowcasting horizons by integrating weather foundation model priors with radar observations.
|
| 15 |
|
|
|
|
| 16 |
|
| 17 |
## 🌟 Model Overview
|
| 18 |
|
| 19 |
**PW-FouCast** addresses the challenge of representational heterogeneities between high-resolution radar imagery and large-scale meteorological data. By leveraging Pangu-Weather forecasts as spectral priors within a Fourier-based backbone, the model effectively bridges the gap between atmospheric dynamics and local convective patterns.
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
| 23 |
### Key Features
|
| 24 |
|
| 25 |
* **Pangu-Weather-guided Frequency Modulation (PFM):** Aligning spectral magnitudes and phases with physical meteorological priors to ensure physically consistent forecasts.
|
|
@@ -38,7 +39,7 @@ from safetensors.torch import load_model
|
|
| 38 |
from huggingface_hub import hf_hub_download
|
| 39 |
|
| 40 |
MODEL_REGISTRY = {
|
| 41 |
-
'pw_foucast':
|
| 42 |
}
|
| 43 |
ModelClass = MODEL_REGISTRY.get(args.model.lower())
|
| 44 |
|
|
@@ -52,5 +53,17 @@ load_model(model, weights_path)
|
|
| 52 |
# Eval
|
| 53 |
model.eval()
|
| 54 |
……
|
|
|
|
| 55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
```
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
| 3 |
+
pipeline_tag: time-series-forecasting
|
| 4 |
tags:
|
| 5 |
+
- weather
|
| 6 |
+
- precipitation-nowcasting
|
| 7 |
+
- climate
|
| 8 |
---
|
| 9 |
+
|
| 10 |
# PW-FouCast: Pangu-Weather-guided Fourier-domain foreCast
|
| 11 |
|
|
|
|
| 12 |
[](https://arxiv.org/abs/2603.21768)
|
| 13 |
[](https://github.com/Onemissed/PW-FouCast)
|
| 14 |
[](https://attend.ieee.org/wcci-2026/)
|
| 15 |
|
| 16 |
+
This is the official Hugging Face repository for **PW-FouCast**, a novel frequency-domain fusion framework designed to extend precipitation nowcasting horizons by integrating weather foundation model priors with radar observations.
|
| 17 |
|
| 18 |
+
The model was introduced in the paper [Extending Precipitation Nowcasting Horizons via Spectral Fusion of Radar Observations and Foundation Model Priors](https://huggingface.co/papers/2603.21768).
|
| 19 |
|
| 20 |
## 🌟 Model Overview
|
| 21 |
|
| 22 |
**PW-FouCast** addresses the challenge of representational heterogeneities between high-resolution radar imagery and large-scale meteorological data. By leveraging Pangu-Weather forecasts as spectral priors within a Fourier-based backbone, the model effectively bridges the gap between atmospheric dynamics and local convective patterns.
|
| 23 |
|
|
|
|
|
|
|
| 24 |
### Key Features
|
| 25 |
|
| 26 |
* **Pangu-Weather-guided Frequency Modulation (PFM):** Aligning spectral magnitudes and phases with physical meteorological priors to ensure physically consistent forecasts.
|
|
|
|
| 39 |
from huggingface_hub import hf_hub_download
|
| 40 |
|
| 41 |
MODEL_REGISTRY = {
|
| 42 |
+
'pw_foucast': PWFouCast,
|
| 43 |
}
|
| 44 |
ModelClass = MODEL_REGISTRY.get(args.model.lower())
|
| 45 |
|
|
|
|
| 53 |
# Eval
|
| 54 |
model.eval()
|
| 55 |
……
|
| 56 |
+
```
|
| 57 |
|
| 58 |
+
## ✍️ Citation
|
| 59 |
+
|
| 60 |
+
If you find this work or code useful for your research, please consider citing:
|
| 61 |
+
|
| 62 |
+
```bibtex
|
| 63 |
+
@article{qin2026extending,
|
| 64 |
+
title={Extending Precipitation Nowcasting Horizons via Spectral Fusion of Radar Observations and Foundation Model Priors},
|
| 65 |
+
author={Yuze Qin, Qingyong Li, Zhiqing Guo, Wen Wang, Yan Liu, Yangli-ao Geng},
|
| 66 |
+
journal={arXiv preprint arXiv:2603.21768},
|
| 67 |
+
year={2026}
|
| 68 |
+
}
|
| 69 |
```
|