Improve model card
Browse filesHi! I'm Niels from the Hugging Face community team.
This PR improves the model card for Marchuk. Key changes include:
- Adding a link to the project page.
- Adding a brief summary of the model's architecture and performance (276M parameters, latent flow-matching).
- Including installation instructions from the official repository.
- Adding the BibTeX citation.
These additions help users better discover and utilize the model.
README.md
CHANGED
|
@@ -3,8 +3,43 @@ license: mit
|
|
| 3 |
pipeline_tag: time-series-forecasting
|
| 4 |
tags:
|
| 5 |
- climate
|
|
|
|
| 6 |
---
|
| 7 |
|
| 8 |
-
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
pipeline_tag: time-series-forecasting
|
| 4 |
tags:
|
| 5 |
- climate
|
| 6 |
+
- weather-forecasting
|
| 7 |
---
|
| 8 |
|
| 9 |
+
# Marchuk: Efficient Global Weather Forecasting from Mid-Range to Sub-Seasonal Scales via Flow Matching
|
| 10 |
|
| 11 |
+
[Paper](https://arxiv.org/abs/2603.24428) | [Project Page](https://v-gen-ai.github.io/Marchuk/) | [GitHub](https://github.com/v-gen-ai/Marchuk)
|
| 12 |
+
|
| 13 |
+
Marchuk is a generative latent flow-matching model for global weather forecasting spanning mid-range to subseasonal timescales, with prediction horizons of up to 30 days. It conditions on current-day weather maps and autoregressively predicts subsequent days' weather maps within a learned latent space.
|
| 14 |
+
|
| 15 |
+
### Key Features
|
| 16 |
+
- **Efficiency**: A compact architecture of 276 million parameters.
|
| 17 |
+
- **Performance**: Achieves predictive skill comparable to much larger models (e.g., LaDCast 1.6B) while operating at higher inference speeds.
|
| 18 |
+
- **Architecture**: Replaces rotary positional encodings (RoPE) with trainable positional embeddings and an extended temporal context window to capture long-range temporal dependencies.
|
| 19 |
+
|
| 20 |
+
## Installation
|
| 21 |
+
|
| 22 |
+
To use the model, you can install the necessary dependencies as follows:
|
| 23 |
+
|
| 24 |
+
```bash
|
| 25 |
+
conda create -n marchuk
|
| 26 |
+
conda activate marchuk
|
| 27 |
+
git clone https://github.com/tonyzyl/ladcast.git
|
| 28 |
+
pip install -e ladcast
|
| 29 |
+
```
|
| 30 |
+
|
| 31 |
+
For evaluation, refer to the `inference.ipynb` provided in the [official repository](https://github.com/v-gen-ai/Marchuk).
|
| 32 |
+
|
| 33 |
+
## BibTeX
|
| 34 |
+
|
| 35 |
+
```bibtex
|
| 36 |
+
@misc{kuzhamuratov2026marchukefficientglobalweather,
|
| 37 |
+
title={Marchuk: Efficient Global Weather Forecasting from Mid-Range to Sub-Seasonal Scales via Flow Matching},
|
| 38 |
+
author={Arsen Kuzhamuratov and Mikhail Zhirnov and Andrey Kuznetsov and Ivan Oseledets and Konstantin Sobolev},
|
| 39 |
+
year={2026},
|
| 40 |
+
eprint={2603.24428},
|
| 41 |
+
archivePrefix={arXiv},
|
| 42 |
+
primaryClass={cs.LG},
|
| 43 |
+
url={https://arxiv.org/abs/2603.24428},
|
| 44 |
+
}
|
| 45 |
+
```
|