File size: 2,507 Bytes
9fcd231 ef1bbb8 83a906b 9fcd231 cc8280b 9fcd231 ef1bbb8 9fcd231 ef1bbb8 e11cde2 9fcd231 ef1bbb8 9fcd231 ef1bbb8 9fcd231 ef1bbb8 9fcd231 ef1bbb8 9fcd231 ef1bbb8 9fcd231 ef1bbb8 9fcd231 e11cde2 9fcd231 e11cde2 9fcd231 ef1bbb8 9fcd231 83a906b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | ---
pretty_name: ArchEGraph-demo
license: apache-2.0
task_categories:
- graph-ml
- time-series-forecasting
language:
- en
tags:
- building-energy
- simulation
- graph
- weather
- demo
size_categories:
- n<1K
configs:
- config_name: manifest
default: true
data_files:
- split: train
path: manifest.csv
- config_name: split_demo
data_files:
- split: train
path: split/split_demo.csv
- config_name: split_demo_mesh
data_files:
- split: train
path: split/split_demo_mesh.csv
---
# ArchEGraph-demo
ArchEGraph-demo is a compact demo package of the ArchEGraph building-energy dataset for graph-based and weather-conditioned learning.
## Dataset Summary
- Total cases in `manifest.csv`: 300
- Unique buildings: 75
- Unique weather IDs: 48
- `n_steps`: always 8,760
- `n_spaces` range: 2 to 132
This package currently stores:
- `manifest.csv` (index of all demo cases)
- `building/` (75 files)
- `geometry/` (75 files)
- `weather/` (48 files)
- `energy/` (300 files)
- `split/` (demo split CSV files)
## Data Layout
Each row in `manifest.csv` contains:
- `sample_id`: case ID (`building__weather` style)
- `source_job_tag`: source identifier
- `weather_id`: weather/location key
- `building_id`: building key
- `energy_file`: relative path to energy npz file under `energy/`
- `n_steps`: number of time steps
- `n_spaces`: number of spaces/zones
## Included Split Files
- `split/split_demo.csv` (300 rows)
- `split/split_demo_mesh.csv` (300 rows)
`split/split_demo.csv` uses these columns:
- `case_id`, `sample_id`, `building_id`, `weather_id`, `subset`, `split`, `scenario`
`split/split_demo_mesh.csv` uses these columns:
- `building_id`, `split`
## Quick Start
```python
import pandas as pd
from pathlib import Path
root = Path(".") # dataset root
manifest = pd.read_csv(root / "manifest.csv")
row = manifest.iloc[0]
energy_path = root / "energy" / row["energy_file"]
building_path = root / "building" / f"{row['building_id']}.npz"
weather_path = root / "weather" / f"{row['weather_id']}.npz"
print(row["sample_id"])
print(energy_path, building_path, weather_path)
```
## Notes
- This repository is the demo package, not the full PACK release.
- Energy files in this demo package are referenced by `energy_file` from `manifest.csv`.
- `split/split_demo.csv` and `split/split_demo_mesh.csv` provide ready-to-use predefined splits for the packaged demo samples.
## Citation
If you use this dataset, please cite your project/paper and this Hugging Face dataset page. |