File size: 3,455 Bytes
75f74f5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
---

task_categories:
- time-series-forecasting
language:
- en
tags:
- TimeSeries,
- Multimodal
---


## Data source:

- [California ISO]
  - https://www.caiso.com/todays-outlook

## Dataset Structure

The dataset is organized into the following structure:

```

|-- subdataset1



|   |-- raw_data  # Original data files

|   |-- time_series # Rule-based Imputed data files

|   |   |-- all_version_1.parquet # Time series data for each subject can be multivariate, can be in csv, parquet, etc.

|   |   |-- all_version_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

|   |   |   |   |   |-- xxx_weather_report_????.json

|   |   |   |   |   |-- ...

|   |   |   |   |-- version_2

|   |   |   |   |-- ...

|   |   |   |-- report_embedding # embedding for the weather report

|   |   |   |   |-- version_1

|   |   |   |   |   |-- xxx_report_embedding_????.pkl

|   |   |   |   |   |-- ...

|   |   |   |   |-- version_2

|   |   |   |   |-- ...



|   |   |-- location_2

|   |   |-- ...



|   |   |-- merged_report_embedding # merged embedding for multiple needed locations (optional)

|   |   |   |-- xxx_embeddings_????.pkl

|   |   |   |-- ...



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

|   |   |   |-- xxx_report.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



|-- 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:

```json

{

    "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:

```json

{

    "general_info": "description of the dataset",

    "downtime_prompt": "",

    "channel_info": {

        "id_1": {

            "channel_1": "channel 1 is xxx",

            "channel_2": "channel 2 is xxx"

        },

        "id_2": {

            "channel_1": "channel 1 is xxx",

            "channel_2": "channel 2 is xxx"

        },

        ...

    },

}

```