--- license: other task_categories: - time-series-forecasting task_ids: - univariate-time-series-forecasting - multivariate-time-series-forecasting annotations_creators: - no-annotation source_datasets: - original tags: - time-series - forecasting - benchmark - fev - tsfile - apache-tsfile - modality:timeseries - Time-series - format:tsfile - arxiv:2509.26468 size_categories: - 100K Note: 2936 original `id` values contained invalid identifier characters and were normalized to valid device names, for example 10_1→_10_1, 10_10→_10_10, 10_11→_10_11. ## Conversion Notes - The source FEV format stores each time series as one nested row containing `id`, `timestamp[]`, and target or covariate arrays. - The TsFile conversion flattens those nested arrays into long rows. Therefore, the `TsFile rows` values above correspond to the number of timestamped observations after flattening. - TAG columns identify the device and static metadata. FIELD columns contain values that change over time. - Large logical tables may be split into multiple `.tsfile` shards such as `_1.tsfile`, `_2.tsfile`, and so on. Shards listed for the same frequency belong to the same logical table. ## Reading Example ```python from tsfile import TsFileReader reader = TsFileReader("walmart.tsfile") schemas = reader.get_all_table_schemas() # Table name(s): walmart ```