Evaluates on-device meteorological variable forecasting and imputation capabilities using a federated learning framework with personalized adapters. It tests the model's ability to predict regional weather trends and handle missing data under data scarcity and heterogeneous distributions. Use when the user wants to benchmark on On-device Weather Series (ODW1/ODW2), or asks about evaluating this task. Reports MAE.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill lm-weather-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Lm Weather Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-lm-weather-eval)More formats (shields.io, HTML) on the badges page.
---
name: lm-weather-eval
description: Evaluates on-device meteorological variable forecasting and imputation capabilities using a federated learning framework with personalized adapters. It tests the model's ability to predict regional weather trends and handle missing data under data scarcity and heterogeneous distributions. Use when the user wants to benchmark on On-device Weather Series (ODW1/ODW2), or asks about evaluating this task. Reports MAE.
metadata:
skill_kind: dataset_eval
source_arxiv: 2405.20348
bibtex_key: chen2024personalized
confidence: high
---
# lm-weather-eval
> Personalized Adapter for Large Meteorology Model on Devices: Towards Weather Foundation Models — Chen et al. (2024) (arXiv:2405.20348, 2024)
## What this evaluates
Evaluates on-device meteorological variable forecasting and imputation capabilities using a federated learning framework with personalized adapters. It tests the model's ability to predict regional weather trends and handle missing data under data scarcity and heterogeneous distributions.
## Datasets
- **On-device Weather Series (ODW1/ODW2)** — total ?; splits: test (-1)
## Metrics
- `MAE` **(primary)** — range: other (lower is better)
- Mean Absolute Error: average of absolute differences between predicted and actual values. Lower is better.
- `RMSE` — range: other (lower is better)
- Root Mean Square Error: square root of the average of squared differences between predicted and actual values. Lower is better.
## Input / output format
**Input**: Multivariate meteorological time series sequences of length 192 collected from regional weather stations.
**Output**: Forecasted values for prediction horizons of 96, 192, 336, or 720 time steps, or imputed values for randomly masked time steps.
## Scoring recipe
```python
def compute_metrics(preds, targets):
mae = np.mean(np.abs(preds - targets))
rmse = np.sqrt(np.mean((preds - targets) ** 2))
return mae, rmse
```
## Common pitfalls
- Lower MAE/RMSE values indicate better performance, contrary to accuracy-based metrics.
- All reported results are averaged over 5 independent experimental runs.
- Baseline models are evaluated in a Federated Learning setting using FedAvg aggregation, not standard centralized training.
- Imputation results in the main text specifically use a 50% random masking ratio.
## Evidence (verbatim from paper)
> Evaluation metrics include mean absolute error (MAE) and root square mean error (RMSE). All our experiments are repeat five times and we report the averaged results. In imputation, we use sequence lengths of {96, 192, 336, 720} and apply three different masking probabilities {25%, 35%, 50%} to represent missing data. The main manuscript shows imputation results for a 50% masking ratio.
## Citation
```bibtex
@misc{chen2024personalized,
title={Personalized Adapter for Large Meteorology Model on Devices: Towards Weather Foundation Models},
author={Chen et al. (2024)},
year={2024},
note={arXiv:2405.20348}
}
```
- arXiv: 2405.20348
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!