Dataset Viewer
The dataset viewer is not available for this dataset.
Cannot get the config names for the dataset.
Error code:   ConfigNamesError
Exception:    ValueError
Message:      Some splits are duplicated in data_files: ['train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train']
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 67, in compute_config_names_response
                  config_names = get_dataset_config_names(
                      path=dataset,
                      token=hf_token,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/inspect.py", line 161, in get_dataset_config_names
                  dataset_module = dataset_module_factory(
                      path,
                  ...<4 lines>...
                      **download_kwargs,
                  )
                File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 1215, in dataset_module_factory
                  raise e1 from None
                File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 1190, in dataset_module_factory
                  ).get_module()
                    ~~~~~~~~~~^^
                File "/usr/local/lib/python3.14/site-packages/datasets/load.py", line 646, in get_module
                  patterns = sanitize_patterns(next(iter(metadata_configs.values()))["data_files"])
                File "/usr/local/lib/python3.14/site-packages/datasets/data_files.py", line 151, in sanitize_patterns
                  raise ValueError(f"Some splits are duplicated in data_files: {splits}")
              ValueError: Some splits are duplicated in data_files: ['train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train', 'train']

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.

HEAPO (TsFile)

Apache TsFile version of Jainam03/RESCAST-100k-HEAPO, one of the processed real residential building-energy corpora used with RESCAST-100k.

Overview

Processed real residential time-series subset used with RESCAST-100k. It is derived from the HEAPO heat-pump optimisation dataset.

  • Buildings: 1,407
  • Rows: 86,277,216
  • Resolution: 15 minutes
  • Time span: Per-building ranges vary from 2022-05-26 00:00 onward (about two years).
  • TsFile layout: The converted corpus is stored as 43 TsFile shard(s) (rescast_100k_heapo_000.tsfile ... rescast_100k_heapo_042.tsfile), all under the TsFile table rescast_100k_heapo.

Each row is one timestamped reading for one building. The TsFile table name is rescast_100k_heapo and the building_id TAG identifies the building.

Schema (TsFile structure)

  • Time (INT64, milliseconds) — timestamp parsed from the source Time column (UTC for timezone-aware sources).

  • building_id (TAG) — building identifier. For the per-building repositories it is the numeric N from the source file name <prefix>_home_N.parquet; for the sharded sample it is the source building_id column.

  • Measurements (FIELD):

  • total_load (DOUBLE) — total electricity load, kWh

  • outdoor_temp (DOUBLE) — outdoor temperature, degrees F

  • relative_humidity (DOUBLE) — relative humidity, percent

Query one building with a predicate such as WHERE building_id = 1. The source column names contain spaces (and : for the sharded sample); they are written as TsFile-safe identifiers by replacing runs of non-alphanumeric characters with _ and lower-casing, e.g. Indoor Temp -> indoor_temp and Fuel Use: Electricity: Total -> fuel_use_electricity_total.

Static building features

The source repositories also contain house_features_*.parquet (static per-building metadata such as weather location, geometry, HVAC type and insulation). That table is not a time series and is not included in this TsFile repository; it remains in the original dataset.

Usage

Install the Apache TsFile Python SDK (pip install tsfile) and read a converted file:

from pathlib import Path
from tsfile import TsFileReader

path = Path("rescast_100k_heapo_000.tsfile")
with TsFileReader(str(path)) as reader:
    schemas = reader.get_all_table_schemas()
    print("tables:", list(schemas))
    table_name = next(iter(schemas))
    table = schemas[table_name]
    columns = [column.get_column_name() for column in table.get_columns()]
    print("columns:", columns)
    field_names = [
        column.get_column_name()
        for column in table.get_columns()
        if column.get_column_name() not in {"Time", "time"}
    ]
    if field_names:
        with reader.query_table(table_name, field_names[:3], batch_size=1024) as result:
            batch = result.read_arrow_batch()
            if batch is not None:
                print(batch.to_pandas().head())

Source & license

  • Original dataset: Jainam03/RESCAST-100k-HEAPO
  • Author / publisher: Brudermueller, T.; Fleisch, E.; Gonzalez Vaya, M.; Staake, T. (processed release by Jainam03)
  • Paper: Brudermueller et al. (2025). HEAPO — An Open Dataset for Heat Pump Optimization with Smart Electricity Meter Data and On-Site Inspection Protocols. ACM e-Energy 2025, 699-711. https://doi.org/10.1145/3679240.3734637
  • License: cc-by-4.0 (processed release; check the original source terms before redistribution)
Downloads last month
23