Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
Error code:   StreamingRowsError
Exception:    ValueError
Message:      Invalid IPv6 URL
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/utils.py", line 99, in get_rows_or_raise
                  return get_rows(
                         ^^^^^^^^^
                File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
                  return func(*args, **kwargs)
                         ^^^^^^^^^^^^^^^^^^^^^
                File "/src/services/worker/src/worker/utils.py", line 77, in get_rows
                  rows_plus_one = list(itertools.islice(ds, rows_max_number + 1))
                                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2690, in __iter__
                  for key, example in ex_iterable:
                                      ^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2227, in __iter__
                  for key, pa_table in self._iter_arrow():
                                       ^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 2251, in _iter_arrow
                  for key, pa_table in self.ex_iterable._iter_arrow():
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 494, in _iter_arrow
                  for key, pa_table in iterator:
                                       ^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/iterable_dataset.py", line 384, in _iter_arrow
                  for key, pa_table in self.generate_tables_fn(**gen_kwags):
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/packaged_modules/json/json.py", line 184, in _generate_tables
                  with open(file, "rb") as f:
                       ^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/streaming.py", line 73, in wrapper
                  return function(*args, download_config=download_config, **kwargs)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/utils/file_utils.py", line 964, in xopen
                  if is_local_path(main_hop):
                     ^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/utils/file_utils.py", line 83, in is_local_path
                  return urlparse(url_or_filename).scheme == "" or os.path.ismount(urlparse(url_or_filename).scheme + ":/")
                         ^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/urllib/parse.py", line 395, in urlparse
                  splitresult = urlsplit(url, scheme, allow_fragments)
                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/urllib/parse.py", line 516, in urlsplit
                  _check_bracketed_netloc(netloc)
                File "/usr/local/lib/python3.12/urllib/parse.py", line 447, in _check_bracketed_netloc
                  raise ValueError("Invalid IPv6 URL")
              ValueError: Invalid IPv6 URL

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

Data source:

Dataset Structure

The dataset is organized into the following structure:

|-- subdataset1

|   |-- raw_data  # Original data files
|   |-- time_series # Rule-based Imputed data files
|   |   |-- id_1.parquet # Time series data for each subject can be multivariate, can be in csv, parquet, etc.
|   |   |-- id_2.parquet
|   |   |-- ...
|   |   |-- id_info.json # Metadata for each subject

|   |-- weather
|   |   |-- location_1
|   |   |   |-- raw_data
|   |   |   |   |-- daily_weather_raw_????.json
|   |   |   |   |-- ...
|   |   |   |   |-- daily_weather_????.csv
|   |   |   |   |-- ...
|   |   |   |   |-- hourly_weather_????.csv
|   |   |   |   |-- ...
|   |   |   |-- weather_report (can be flattened and use regex to extract the version)
|   |   |   |   |-- version_1
|   |   |   |   |   |-- weather_report_????.json
|   |   |   |   |   |-- ...
|   |   |   |   |-- version_2
|   |   |   |   |-- ...
|   |   |   |-- report_embedding # embedding for the weather report
|   |   |   |   |-- version_1
|   |   |   |   |   |-- report_embedding_????.pkl
|   |   |   |   |   |-- ...
|   |   |   |   |-- version_2
|   |   |   |   |-- ...

|   |   |-- location_2
|   |   |-- ...

|   |   |-- merged_report_embedding # merged embedding for multiple needed locations (optional)
|   |   |   |-- version_1
|   |   |   |   |-- report_embedding_????.pkl
|   |   |   |   |-- ...
|   |   |   |-- version_2
|   |   |   |-- ...

|   |   |-- merged_general_report # merged general report for multiple needed locations (optional)
|   |   |   |-- xxx.json
|   |   |   |-- ...

|   |-- scripts # Scripts for data processing, model training, and evaluation
|   |-- id_info.json # Metadata for whole dataset without preprocessing
|   |-- static_info.json # Static information for this dataset, including the dataset information, channel information, downtime reasons. 
|   |-- static_info_embeddings.pkl

|   |-- slim_data (optional)
|   |-- full_data (optional) # intermediate data during the data processing

|-- subdataset2
|-- ......

id_info.json Structure

The id_info.json file contains metadata for each subject in the dataset. Extracted from the raw dataset. The structure is as follows:

{
    "id_1": {
        "len": 1000, # Length of the time series data
        "sensor_downtime": {
            1: {
                "time": [yyyy-mm-dd hh:mm:ss, yyyy-mm-dd hh:mm:ss],
                "index": [start_index, end_index]
            },
            2: {
                "time": [yyyy-mm-dd hh:mm:ss, yyyy-mm-dd hh:mm:ss],
                "index": [start_index, end_index]
            },
            ...
        },
        "other_info_1": "value_1", # Other information about the subject customizable entry
        "other_info_2": "value_2",
        ...
    },
    "id_2": ...

}

static_info.json Structure

The static_info.json file contains static information for the whole dataset. The structure is as follows:

{
    "general_info": "description of the dataset",
    "downtime_prompt": "",
    "channel_info": {
        "id_1": "id_1 is xxx located in xxx",
        "id_2": "id_2 is xxx located in xxx",
        ...
    },
}
Downloads last month
453

Collection including fidel-ts/Germany_Renewable_Energy_Grid