From 91cb1d3250610218cd9756f20050aa482471dfde Mon Sep 17 00:00:00 2001 From: abalint Date: Mon, 25 Mar 2024 13:11:15 +0100 Subject: [PATCH] updated all links to huggingface dataset --- docs/docs/examples.md | 2 +- docs/docs/index.md | 2 +- src/enfobench/__version__.py | 2 +- src/enfobench/datasets/electricity_demand.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/docs/examples.md b/docs/docs/examples.md index f0c84ad..ab29c5b 100644 --- a/docs/docs/examples.md +++ b/docs/docs/examples.md @@ -51,7 +51,7 @@ Install the requirements (recommended inside a virtual environment): pip install notebook enfobench ``` -To run the notebooks, you also need the HuggingFace dataset [attila-balint-kul/electricity-demand](https://huggingface.co/datasets/attila-balint-kul/electricity-demand). +To run the notebooks, you also need the HuggingFace dataset [EDS-lab/electricity-demand](https://huggingface.co/datasets/EDS-lab/electricity-demand). Download all three files from the `data/` folder into the `data/electicity-demand/` folder of this repository. Run the example notebooks in the `notebooks` folder. diff --git a/docs/docs/index.md b/docs/docs/index.md index cd88e1e..ebf87a0 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -62,7 +62,7 @@ dataset = Dataset( ) ``` -The package integrates with the HuggingFace Dataset ['attila-balint-kul/electricity-demand'](https://huggingface.co/datasets/attila-balint-kul/electricity-demand). +The package integrates with the HuggingFace Dataset ['EDS-lab/electricity-demand'](https://huggingface.co/datasets/EDS-lab/electricity-demand). To use this, just download all the files from the data folder to your computer. ```python diff --git a/src/enfobench/__version__.py b/src/enfobench/__version__.py index 3d18726..dd9b22c 100644 --- a/src/enfobench/__version__.py +++ b/src/enfobench/__version__.py @@ -1 +1 @@ -__version__ = "0.5.0" +__version__ = "0.5.1" diff --git a/src/enfobench/datasets/electricity_demand.py b/src/enfobench/datasets/electricity_demand.py index d3f09c4..229027a 100644 --- a/src/enfobench/datasets/electricity_demand.py +++ b/src/enfobench/datasets/electricity_demand.py @@ -133,7 +133,7 @@ class ElectricityDemandDataset: This directory should contain all the subset files. """ - HUGGINGFACE_DATASET = "attila-balint-kul/electricity-demand" + HUGGINGFACE_DATASET = "EDS-lab/electricity-demand" SUBSETS = ("demand", "metadata", "weather") def __init__(self, directory: Path | str) -> None: