Datasets:
Tasks:
Time Series Forecasting
Formats:
arrow
Sub-tasks:
univariate-time-series-forecasting
Size:
1K - 10K
License:
item_id stringlengths 2 24 | series_id stringlengths 5 9 | start timestamp[us]date 2025-05-09 23:55:00 2025-05-10 23:40:00 | target listlengths 2.02k 2.02k |
|---|---|---|---|
GigabitEthernet0/6 | 104741782 | 2025-05-09T23:55:00 | [
132494112,
107854768,
85698952,
77860864,
68921520,
94385304,
74997048,
94884680,
71220800,
59086092,
55741984,
47594036,
77215712,
108404064,
126170336,
96721728,
67610536,
86080208,
73428712,
104823400,
126751248,
113493368,
113848000,
96642912,
111485320,
1051007... |
GigabitEthernet0/10 | 103861693 | 2025-05-09T23:55:00 | [
75943776,
53854808,
52418048,
66070316,
66631464,
46681156,
42831820,
49224836,
49207024,
38369532,
34778736,
32837648,
29470742,
34104712,
40462572,
53152436,
32536334,
39364524,
30885232,
21667300,
26694740,
29015492,
30625888,
31422670,
35508236,
32958364,
4423... |
TenGigabitEthernet0/0/24 | 102770074 | 2025-05-09T23:55:00 | [
10855.5400390625,
9889.8896484375,
919980.875,
11020.1201171875,
9475.7001953125,
8011.81005859375,
811175.125,
9443.150390625,
196059.84375,
652601.9375,
8575.1904296875,
711971.9375,
10713.4501953125,
8701.490234375,
743125.5,
10754.33984375,
8512.6396484375,
164757.65625,
4809... |
Port-channel1 | 102845599 | 2025-05-09T23:55:00 | [
368945824,
307336864,
322134240,
313024384,
307611200,
332052384,
309913216,
292631328,
411489376,
250379136,
251799280,
208619712,
156553520,
171462992,
222097824,
230833616,
228610528,
211190000,
201190768,
197060096,
196790848,
188651488,
33348912,
28680822,
384111... |
GigabitEthernet0/0/6 | 110040232 | 2025-05-09T23:55:00 | [
66247764,
73648448,
73360904,
66764132,
64127360,
62581008,
61660280,
70970512,
65748928,
69680248,
70323968,
59224796,
62921008,
65112784,
70069640,
55742288,
64750268,
64198396,
46642832,
56104104,
45948708,
61211284,
55323024,
62793816,
55633332,
44091772,
4470... |
GigabitEthernet0/2/33 | 103267957 | 2025-05-09T23:55:00 | [
236559312,
264330320,
200744032,
217272688,
174815472,
153339616,
172648336,
158893824,
151676016,
141203568,
149347504,
141546544,
131278528,
150819056,
151096336,
134904512,
131853352,
136013424,
97709080,
125226416,
118962656,
136831760,
119497344,
115104840,
10857... |
GigabitEthernet0/0/8 | 110040223 | 2025-05-09T23:55:00 | [
137702624,
143013632,
137192000,
125844232,
116544888,
108935064,
105689160,
110790488,
101979208,
85910480,
77479032,
59504180,
69061088,
66600736,
67569744,
62966024,
82582240,
55898680,
71692864,
57009544,
68565600,
61682620,
61704096,
49756920,
57448324,
5412606... |
GigabitEthernet0/9 | 103861703 | 2025-05-09T23:55:00 | [
114588872,
105970056,
97452424,
108285648,
111540440,
99468528,
114744664,
63859224,
59390848,
54230508,
45894364,
47407320,
56877240,
38566544,
51038748,
47175852,
36956776,
39515540,
46173200,
49485188,
45872560,
48136560,
38128328,
47912780,
43103592,
45764080,
... |
TenGigabitEthernet0/0/25 | 103764470 | 2025-05-09T23:55:00 | [60066648.0,63927220.0,63384808.0,54979388.0,31481624.0,37368032.0,34996688.0,33732288.0,23630122.0,(...TRUNCATED) |
TenGigabitEthernet0/0/27 | 108871933 | 2025-05-09T23:55:00 | [75534328.0,73560760.0,84595584.0,78038592.0,61326552.0,88713408.0,58626976.0,56637804.0,35494240.0,(...TRUNCATED) |
End of preview. Expand in Data Studio
VT Telco Time Series Dataset
Time series dataset extracted from IPMS network telemetry for forecasting and monitoring tasks in telecom infrastructure.
The dataset contains one row per time series in Arrow IPC format and is intended for use with GluonTS/Chronos-style modeling workflows.
Data format and usage
Each dataset row corresponds to one univariate time series with the following schema:
item_id(string): interface name.series_id(string): series identifier parsed from the raw source key.start(timestamp[us]): start timestamp of the series.target(Sequence[float32]): observed values for that series.
Current release summary:
- Number of series (rows):
1118 - Fixed history length per series:
2016points - File size:
8,667,418bytes (~8.27 MB) - Earliest start timestamp:
2025-05-09 23:55:00 - Latest start timestamp:
2025-05-10 23:40:00
Load with PyArrow
import pyarrow as pa
import pyarrow.ipc as ipc
with pa.memory_map("ipms.arrow", "r") as source:
table = ipc.open_file(source).read_all()
print(table.schema)
print(table.slice(0, 1).to_pylist()[0])
Convert to pandas
import pyarrow as pa
import pyarrow.ipc as ipc
with pa.memory_map("ipms.arrow", "r") as source:
table = ipc.open_file(source).read_all()
df = table.to_pandas()
print(df.head())
Sample entry
{
"item_id": "GigabitEthernet0/6",
"series_id": "104741782",
"start": "2025-05-09 23:55:00",
"target": [132494112.0, 107854768.0, 85698952.0, ...]
}
Data preparation
The source CSV is converted to Arrow using scripts/ipms_to_gluonts_arrow.py with these key processing steps:
- Keep only rows where
cc_anomaly_resultis in{0, false}(case-insensitive). - Parse
interfacefield intoseries_id,item_id, and fallback timestamp. - Use up to
2016points per series (configured by--max-pointsat generation time). - Write Arrow IPC with compression (
lz4by default).
Changelog
- v1.0.0 (2026-04-03): Initial public release of
ipms.arrowfor VT Telco forecasting.
License
This dataset is currently released as other license.
Please update this section with the exact license terms before production or external redistribution.
Citation
If you use this dataset, please cite the dataset repository:
@dataset{trungkien_vt_telco_ts_2026,
author = {TrungKiencding},
title = {VT Telco Time Series Dataset},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/TrungKiencding/VT_Telco_TS_Dataset}
}
- Downloads last month
- 44