Evaluates the predictive accuracy and computational efficiency of deep learning models for urban traffic forecasting. It benchmarks grid-based, graph-based, and multivariate time-series architectures on standard traffic datasets to compare their ability to capture spatiotemporal dependencies. Use when the user wants to benchmark on BikeNYC-I, TaxiNYC, TaxiBJ, METR-LA, PeMS-BAY, PEMSD7M, 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 dl-traff-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dl Traff Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-dl-traff-eval)More formats (shields.io, HTML) on the badges page.
---
name: dl-traff-eval
description: Evaluates the predictive accuracy and computational efficiency of deep learning models for urban traffic forecasting. It benchmarks grid-based, graph-based, and multivariate time-series architectures on standard traffic datasets to compare their ability to capture spatiotemporal dependencies. Use when the user wants to benchmark on BikeNYC-I, TaxiNYC, TaxiBJ, METR-LA, PeMS-BAY, PEMSD7M, or asks about evaluating this task. Reports MAE.
metadata:
skill_kind: dataset_eval
source_arxiv: 2108.09091
bibtex_key: jiang2021dltraff
confidence: high
---
# dl-traff-eval
> DL-Traff: Survey and Benchmark of Deep Learning Models for Urban Traffic Prediction — Jiang et al. (2021) (arXiv:2108.09091, 2021)
## What this evaluates
Evaluates the predictive accuracy and computational efficiency of deep learning models for urban traffic forecasting. It benchmarks grid-based, graph-based, and multivariate time-series architectures on standard traffic datasets to compare their ability to capture spatiotemporal dependencies.
## Datasets
- **BikeNYC-I** — total ?; splits: train (-1), val (-1), test (-1)
- **TaxiNYC** — total ?; splits: train (-1), val (-1), test (-1)
- **TaxiBJ** — total ?; splits: train (-1), val (-1), test (-1)
- **METR-LA** — total ?; splits: train (-1), val (-1), test (-1)
- **PeMS-BAY** — total ?; splits: train (-1), val (-1), test (-1)
- **PEMSD7M** — total ?; splits: train (-1), val (-1), test (-1)
## Metrics
- `MAE` **(primary)** — range: other
- Mean Absolute Error: the average of the absolute differences between predicted and actual values. Used as the default loss function during training.
- `RMSE` — range: other
- Root Mean Square Error: the square root of the average of squared differences between predicted and actual values.
- `MAPE` — range: percent
- Mean Absolute Percentage Error: the average of absolute percentage differences between predicted and actual values, expressed as a percentage.
## Input / output format
**Input**: Historical traffic measurements (volume or speed) over a fixed observation window, structured as grid cells or graph nodes with temporal dimensions.
**Output**: Predicted traffic measurements for a specified prediction horizon (1 step for grid models; 1, 2, or 3 steps for graph models).
## Scoring recipe
```python
def compute_metrics(y_true, y_pred):
mask = y_true != 0
y_t, y_p = y_true[mask], y_pred[mask]
mae = np.mean(np.abs(y_t - y_p))
rmse = np.sqrt(np.mean((y_t - y_p) ** 2))
mape = np.mean(np.abs((y_t - y_p) / y_t)) * 100
return {'MAE': mae, 'RMSE': rmse, 'MAPE': mape}
```
## Common pitfalls
- Zero values in the ground truth are explicitly ignored when computing MAE, RMSE, and MAPE.
- Grid-based and graph-based models use different fixed observation/prediction step settings (6 vs 12), so direct comparison requires matching these horizons.
- Training uses early stopping if validation error converges within 10 epochs, otherwise runs for a maximum of 200 epochs; the best validation model is saved.
## Evidence (verbatim from paper)
> Root Mean Square Error (RMSE), Mean Absolute Error (MAE), and Mean Absolute Percentage Error (MAPE) are used as metrics, where zero values will be ignored.
## Citation
```bibtex
@misc{jiang2021dltraff,
title={DL-Traff: Survey and Benchmark of Deep Learning Models for Urban Traffic Prediction},
author={Jiang et al. (2021)},
year={2021},
note={arXiv:2108.09091}
}
```
- arXiv: 2108.09091
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!