DatasetGenerationError

#2
by Na00s - opened

Good evening,
when running code:
from datasets import load_dataset
dataset = load_dataset("openclimatefix/uk_pv")
I get the error:
-> 1606 raise DatasetGenerationError("An error occurred while generating the dataset") from e
1608 yield job_id, True, (total_num_examples, total_num_bytes, writer._features, num_shards, shard_lengths)
DatasetGenerationError: An error occurred while generating the dataset
Is there a way to fix this?
Thank you for your time !

I think there is a bug somewhere: can you try to manually download the dataset file instead of using datasets.load_dataset. You can then load it in pandas for instance:

import pandas as pd
df = pd.read_parquet('path/where/you/saved/the/file/5min.parquet')

Sign up or log in to comment