upload data cards and data files
Browse files
README.md
CHANGED
@@ -1,3 +1,59 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
size_categories:
|
4 |
+
- n>1T
|
5 |
---
|
6 |
+
|
7 |
+
# Solar Flare Forecasting Labels
|
8 |
+
|
9 |
+
## Dataset Summary
|
10 |
+
|
11 |
+
This dataset provides binary labels for solar flare forecasting using a rolling window approach. Labels are generated based on both the **maximum flare intensity** and the **cumulative flare intensity** observed within each window. The data spans from 2010 to 2024 and is derived from NOAA GOES flare event listings.
|
12 |
+
|
13 |
+
## Supported Tasks and Applications
|
14 |
+
|
15 |
+
- `binary-classification`: Predict whether a given time window will contain a flare
|
16 |
+
- Maximum intensity: greater than or equals to M1.0.
|
17 |
+
- Cumulative intensity: greather than or equals to 10.
|
18 |
+
- `regression`: Predict Maximum intensity or cumulative intensity within a given time window
|
19 |
+
|
20 |
+
## Dataset Structure
|
21 |
+
|
22 |
+
### Data Files
|
23 |
+
|
24 |
+
- `train.csv`: Input data from January to June (6 months)
|
25 |
+
- `val.csv`: Input data from July to September (3 months)
|
26 |
+
- `test.csv`: Input data from October to December (3 months)
|
27 |
+
|
28 |
+
### Features
|
29 |
+
|
30 |
+
- Applies a rolling time window (24h window) to generate:
|
31 |
+
- `max_goes_class`: highest flare intensity/class in the 24-hour window
|
32 |
+
- `cumulative_index`: sum of sub-class values in the 24-hour window
|
33 |
+
- `label_max`: Binary label (`max_goes_class` ≥ M1.0)
|
34 |
+
- `label_cum`: Binary label (`cumulative_index` ≥ 10)
|
35 |
+
- Splits dataset into four seasonal subsets (3-month each)
|
36 |
+
- Supports optional filtering using an external index (e.g., image availability in SuryaBench)
|
37 |
+
|
38 |
+
### Data Format
|
39 |
+
|
40 |
+
Each labeled record includes:
|
41 |
+
|
42 |
+
```json
|
43 |
+
{
|
44 |
+
"timestep": "2013-02-01T00:00:00",
|
45 |
+
"max_goes_class": "M2.5",
|
46 |
+
"cumulative_index": 38.5,
|
47 |
+
"max_label": 1,
|
48 |
+
"sum_label": 1
|
49 |
+
}
|
50 |
+
```
|
51 |
+
|
52 |
+
## Dataset Details
|
53 |
+
|
54 |
+
| Field | Description |
|
55 |
+
|------------------------|---------------------------------------------|
|
56 |
+
| **Temporal Coverage** | May 13, 2010 – Dec 31, 2024 |
|
57 |
+
| **Data Format** | CSV (.csv), string-based schema |
|
58 |
+
| **Data Size** | `Total 109,175 instances` |
|
59 |
+
| **Total File Size** | ~3.7MB |
|
test.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
train.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|
val.csv
ADDED
The diff for this file is too large to render.
See raw diff
|
|