babycow/TD-HER-Dataset
TD-HER Dataset Pre-processed representations for reproducing all results in the paper "Target-Dependent Heterogeneous Expert Routing for Power System Frequency Extremum and Arrival-Time Prediction". Quick Start All experiment scripts default to data/ as the dataset root. No additional configuration is needed if the dataset is placed here. Dataset Structure data/ ├── ieee39/ # IEEE 39-bus New England system (10 generators) │ ├──… See the full description on the dataset page: https://huggingface.co/datasets/babycow/TD-HER-Dataset.
TD-HER Dataset
Pre-processed representations for reproducing all results in the paper "Target-Dependent Heterogeneous Expert Routing for Power System Frequency Extremum and Arrival-Time Prediction".
Quick Start
All experiment scripts default to data/ as the dataset root. No additional configuration is needed if the dataset is placed here.
Dataset Structure
data/
├── ieee39/ # IEEE 39-bus New England system (10 generators)
│ ├── repA/ # Representation A (tabular features)
│ │ ├── ms1/ # ~10 ms early window (1 post-trigger step)
│ │ ├── ms5/ # ~50 ms early window
│ │ ├── ms10/ # ~100 ms early window (main setting)
│ │ ├── ms15/ # ~150 ms early window
│ │ └── ms25/ # ~250 ms early window
│ ├── repB/ # Representation B (spatiotemporal tensor + static)
│ │ └── ms{1,5,10,15,25}/
│ ├── repC/ # Representation C (graph: tensor + adjacency)
│ │ └── ms{1,5,10,15,25}/
│ ├── csv/ # Raw ms10 CSV files (for robustness stress test)
│ └── adjacency/ # 10×10 Kron-reduced electrical-distance adjacency
│
└── ieee300/ # IEEE 300-bus system (69 generators)
├── repA/ms10/ # Tabular features (same-distribution only)
├── repB/ms10/ # Spatiotemporal tensor + static
├── repC/ms10/ # Graph representation
└── adjacency/ # 69×69 electrical-distance adjacencySplit Convention
Each ms{N}/ directory contains NumPy arrays following the naming convention:
L2/L3 splits are only available at ms10 (the main early-window setting).
Prediction Targets
- y1 (
y[:,0]): Signed COI frequency extremum (Hz) - y2 (
y[:,1]): Nonnegative time from disturbance trigger to frequency extremum (s)
Sample Counts
Channels
Paper Section Mapping
Data Generation
The raw time-domain simulation data were generated in PSS/E under randomized disturbances and operating conditions (see Section IV-A of the paper). The representations were constructed by the pipeline in data_proc/:
data_proc/extract_features.py— xlsx/CSV extraction from PSS/E outputdata_proc/build_representations.py— RepA/RepB/RepC constructiondata_proc/build_adjacency.py— Kron-reduced adjacency matrices
IEEE Test System RAW Topology Files
The graph-expert adjacency builder (data_proc/build_adjacency.py) consumes PSS/E .RAW topology files. These are standard public IEEE test cases and are not redistributed here.
Place them in data/topology/ if you need to regenerate adjacency matrices from scratch (not required if using the pre-computed .npy files above).
Size
205 files total (184 .npy, 12 .json, 7 .csv, 2 other).
License
Released under the same license as the TD-HER repository.
