The dataset viewer is not available for this dataset.
Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
METR-LA Traffic Dataset - TsFile Conversion
This repository contains a TsFile conversion of
witgaw/METR-LA, a
Hugging Face version of the METR-LA traffic forecasting dataset commonly used
with the DCRNN model.
Modalities: Time-series.
Source Dataset
The source dataset contains pre-windowed traffic forecasting records with temporal train, validation, and test splits. Each row represents one traffic sensor at one reference timestamp. METR-LA has 207 sensors, 5-minute temporal resolution, 12 historical input steps, and a 12-step / 1-hour prediction horizon.
Original citation:
@inproceedings{li2018dcrnn_traffic,
title={Diffusion Convolutional Recurrent Neural Network: Data-Driven Traffic Forecasting},
author={Li, Yaguang and Yu, Rose and Shahabi, Cyrus and Liu, Yan},
booktitle={International Conference on Learning Representations},
year={2018}
}
Converted Data
Total converted rows: 7,089,543. Total TsFile size: 836,273,409 bytes.
train: 4,962,618 rows, 207 sensors, 48 fields, 591,241,347 bytesval: 708,975 rows, 207 sensors, 48 fields, 84,104,096 bytestest: 1,417,950 rows, 207 sensors, 48 fields, 160,927,966 bytes
The source sensor graph files are mirrored under sensor_graph/.
TsFile Schema
Time: parsed from sourcet0_timestampas INT64 milliseconds.- TAG:
node_id, the traffic sensor identifier. - FIELD: all source
x_t*_d*historical input features andy_t*_d*future target features, stored as FLOAT.
Conversion Notes
- Source
t0_timestampis not stored as a field because it is encoded asTime. node_idis cast to string and declared as the TsFile TAG column.- Feature columns are preserved, but schema-unsafe offset markers are renamed.
Example renamed columns:
x_t-11_d0->x_t_minus_11_d0x_t-11_d1->x_t_minus_11_d1x_t-10_d0->x_t_minus_10_d0x_t-10_d1->x_t_minus_10_d1x_t-9_d0->x_t_minus_9_d0x_t-9_d1->x_t_minus_9_d1x_t-8_d0->x_t_minus_8_d0x_t-8_d1->x_t_minus_8_d1- ... 40 additional renamed columns
Read Example
# Read `metr_la_train.tsfile` with the Apache TsFile Java/Python SDK.
- Downloads last month
- 460