Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -37,26 +37,24 @@ This dataset is designed for machine learning research involving phenomena influ
|
|
37 |
|
38 |
## Data Splits
|
39 |
|
40 |
-
This dataset is provided as a collection of daily
|
41 |
|
42 |
## Dataset Structure
|
43 |
|
44 |
The dataset is organized into 5194 TAR files, with one TAR file per day within the temporal coverage period. Each daily TAR file contains multiple observation sets, one for every 15-minute interval of that day (up to 96 observation sets per day). An observation set consists of 6 NumPy (`.npy`) files, one for each specified channel.
|
45 |
|
46 |
-
|
47 |
-
Files are organized with a path structure that WebDataset uses as the `__key__`. For example, files for May 13, 2010, at 00:00 UTC would be:
|
48 |
-
* `2010/05/13/0000.aia_0131.npy`
|
49 |
-
* `2010/05/13/0000.aia_0171.npy`
|
50 |
-
* `2010/05/13/0000.aia_0193.npy`
|
51 |
-
* `2010/05/13/0000.aia_0211.npy`
|
52 |
-
* `2010/05/13/0000.aia_1600.npy`
|
53 |
-
* `2010/05/13/0000.hmi_m.npy`
|
54 |
|
55 |
-
|
56 |
-
|
57 |
-
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
-
Each `.npy` file
|
60 |
|
61 |
### Features
|
62 |
|
|
|
37 |
|
38 |
## Data Splits
|
39 |
|
40 |
+
This dataset is provided as a collection of daily `.tar` files. No predefined training, validation, or test splits are provided. Users are encouraged to define their own splits according to their specific research requirements, such as by date ranges (e.g., specific years or months of year for training/validation/testing) or by solar events.
|
41 |
|
42 |
## Dataset Structure
|
43 |
|
44 |
The dataset is organized into 5194 TAR files, with one TAR file per day within the temporal coverage period. Each daily TAR file contains multiple observation sets, one for every 15-minute interval of that day (up to 96 observation sets per day). An observation set consists of 6 NumPy (`.npy`) files, one for each specified channel.
|
45 |
|
46 |
+
Each `.tar` file corresponds to one day of data and contains one `.npy` file per channel, per 15-minute timestamp. For each timestamp, the internal file path has the following structure. In WebDataset convention, the `YYYY/MM/DD/HHMM` substring of the path becomes the key for each data sample, and the `aia_0131.npy`, `aia_0171.npy`, `aia_0193.npy`, `aia_0211.npy`, `aia_1600.npy`, `hmi_m.npy` substrings become the names of the features for a given sample.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
|
48 |
+
```
|
49 |
+
YYYY/MM/DD/HHMM.aia_131.npy
|
50 |
+
YYYY/MM/DD/HHMM.aia_171.npy
|
51 |
+
YYYY/MM/DD/HHMM.aia_193.npy
|
52 |
+
YYYY/MM/DD/HHMM.aia_211.npy
|
53 |
+
YYYY/MM/DD/HHMM.aia_1600.npy
|
54 |
+
YYYY/MM/DD/HHMM.hmi_m.npy
|
55 |
+
```
|
56 |
|
57 |
+
Each `.npy` file stores a single-channel 512×512 image.
|
58 |
|
59 |
### Features
|
60 |
|