Skip to main content

Energy forecast benchmarking toolkit.

Project description

Energy Forecast Benchmark Toolkit

PyPI version Hatch project code style - Black linting - Ruff types - Mypy

Energy Forecast Benchmark Toolkit is a Python project that aims to provide common tools to benchmark forecast models.


Documentation: https://attila-balint-kul.github.io/energy-forecast-benchmark-toolkit/

Source code: https://github.com/attila-balint-kul/energy-forecast-benchmark-toolkit

Dataset: https://huggingface.co/datasets/attila-balint-kul/electricity-demand

Dashboard https://api.wandb.ai/links/attila-balint-kul/duaehj8c


Table of Contents


Installation

Use the package manager pip to install foobar.

pip install enfobench

Usage

Download the HuggingFace Dataset 'attila-balint-kul/electricity-demand', and download the files from the data folder to your computer.

import pandas as pd

from enfobench import Dataset
from enfobench.datasets import ElectricityDemandDataset
from enfobench.evaluation import cross_validate, evaluate_metrics
from enfobench.evaluation.metrics import mean_bias_error, mean_absolute_error, root_mean_squared_error

# Load the dataset from the folder that you downloaded the files to.
ds = ElectricityDemandDataset("/path/to/the/dataset/folder/that/contains/all/subsets")

# List all meter ids
ds.list_unique_ids()

# Get one of the meter ids
unique_id = ds.list_unique_ids()[0]

# Get dataset for a specific meter id
target, past_covariates, metadata = ds.get_data_by_unique_id(unique_id)

# Create a dataset
dataset = Dataset(
    target=target,
    past_covariates=past_covariates,
    future_covariates=None,
    metadata=metadata
)

# Import your model and instantiate it
model = MyForecastModel()

# Run cross validation on your model
cv_results = cross_validate(
    model,
    dataset,
    start_date=pd.Timestamp("2018-01-01"),
    end_date=pd.Timestamp("2018-01-31"),
    horizon=pd.Timedelta("24 hours"),
    step=pd.Timedelta("1 day"),
)

# Simply pass in the cross validation results and the metrics you want to evaluate.
metrics = evaluate_metrics(
    cv_results,
    metrics={
        "MBE": mean_bias_error,
        "MAE": mean_absolute_error,
        "RMSE": root_mean_squared_error,
    },
)

To get started with some examples check out the models folder and the examples section of the documentation.

Benchmarking

Once confident in your model, you can submit for evaluation. The results of the benchmarks are openly accessible here.

Contributing

Contributions and feedback are welcome! For major changes, please open an issue first to discuss what you would like to change.

If you'd like to contribute to the project, please follow these steps:

Fork the repository. Create a new branch for your feature or bug fix. Make your changes and commit them. Push your changes to your forked repository. Submit a pull request describing your changes.

License

BSD 2-Clause License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

enfobench-0.5.0.tar.gz (23.5 kB view details)

Uploaded Source

Built Distribution

enfobench-0.5.0-py3-none-any.whl (20.7 kB view details)

Uploaded Python 3

File details

Details for the file enfobench-0.5.0.tar.gz.

File metadata

  • Download URL: enfobench-0.5.0.tar.gz
  • Upload date:
  • Size: 23.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for enfobench-0.5.0.tar.gz
Algorithm Hash digest
SHA256 cb9b0ae777d3777f4c6dceb7875a1d2326c0f3c390e0da352a04af14083dd6ed
MD5 9e99b2d57853b0f144303d2680df10dc
BLAKE2b-256 67e97910a14ad3720127ecd4803a459d7ed026fa311e5676231506f1df942c05

See more details on using hashes here.

File details

Details for the file enfobench-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: enfobench-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 20.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for enfobench-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d7fba1868f35f5df8dcd3d4d372848bea40e587d3fce6fee78c3726754fae7d5
MD5 b39b6694e1fd726f9ac1f19d42919536
BLAKE2b-256 225923440b2be54bfd9e1688c9844e392f9ec5f36f9051067761da340503e0c7

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page