Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
license: apache-2.0
|
| 4 |
+
tags:
|
| 5 |
+
- energy
|
| 6 |
+
- synthetic-data
|
| 7 |
+
- AMI
|
| 8 |
+
- load-profiles
|
| 9 |
+
- new-england
|
| 10 |
+
- CVAE
|
| 11 |
+
library_name: pytorch
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# OpenSynth New England — CVAE Weights
|
| 15 |
+
|
| 16 |
+
Conditional Variational Autoencoder for generating synthetic AMI load profiles
|
| 17 |
+
conditioned on New England housing archetypes, heating fuel, weather, and DER.
|
| 18 |
+
|
| 19 |
+
## Usage
|
| 20 |
+
|
| 21 |
+
```python
|
| 22 |
+
pip install opensynth-newengland[cvae]
|
| 23 |
+
# Download weights to src/opensynth_ne/weights/
|
| 24 |
+
from opensynth_ne import generate_day
|
| 25 |
+
df, summary = generate_day(archetype="colonial", fuel="oil", month=0)
|
| 26 |
+
```
|
| 27 |
+
|
| 28 |
+
## Architecture
|
| 29 |
+
|
| 30 |
+
- 948k parameters
|
| 31 |
+
- 6-channel output: base, behav, heat, cool, ev, solar (96 timesteps each)
|
| 32 |
+
- 32-dim latent space, 25-dim conditioning vector
|
| 33 |
+
- Trained with cyclical beta annealing + free bits (0.5 nats/dim)
|
| 34 |
+
|
| 35 |
+
## Training
|
| 36 |
+
|
| 37 |
+
- 500k synthetic profiles from v0 mock model
|
| 38 |
+
- 200 epochs, early stopped at 70
|
| 39 |
+
- Val reconstruction MSE: 0.2225
|
| 40 |
+
|
| 41 |
+
## Repository
|
| 42 |
+
|
| 43 |
+
https://github.com/doctorbrownphd/opensynth-newengland
|