fev_datasets / hermes /README.md
smilegeng's picture
chore: translate subset README and add format:tsfile tag
1d2816f verified
|
Raw
History Blame Contribute Delete
2.37 kB
metadata
license: other
task_categories:
  - time-series-forecasting
tags:
  - time-series
  - tsfile
  - format:tsfile
pretty_name: hermes (TsFile format)

hermes (TsFile format)

Source and Citation

This dataset was converted from external source data into a unified forecasting format and then into TsFile. Licensing and citation requirements follow the original source. We do not claim ownership of the original data. Unless otherwise stated, the data is intended for research use.

Dataset Statistics

Number of series Median length Observations Dynamic columns Static columns Files
10,000 261 5,220,000 2 2 hermes_1..hermes_3.tsfile (3 shards)

TsFile Storage Model

  • Each original series (id) is stored as one TsFile device (TAG dimension).
  • Static covariate columns are also stored as TAGs (device metadata): country, category.
  • Time-varying targets and dynamic covariates are stored as measurements (FIELDs).
  • timestamp is mapped to Time as INT64 milliseconds.
  • Table name: hermes.

Column Schema

Column Role TsFile type
Time Time column INT64
id TAG (device dimension) STRING
country TAG (device dimension) STRING
category TAG (device dimension) STRING
target FIELD (measurement) FLOAT
external FIELD (measurement) FLOAT

Conversion Notes

  • Each original row stores one complete series (id, timestamp[], target and dynamic arrays). The converter flattens these nested rows into a long table before writing TsFile.
  • Numeric types are inferred from the source columns, for example float32 to FLOAT, float64 to DOUBLE, integers to INT64, and bool to BOOLEAN.
  • Time precision: milliseconds (INT64).
  • Large tables may be automatically sharded as <name>_1.tsfile, <name>_2.tsfile, and so on. These shards belong to the same logical table.

Reading Example

from tsfile import TsFileReader

reader = TsFileReader("hermes.tsfile")
schemas = reader.get_all_table_schemas()
# Table name: hermes; see \"Column Schema\" below.