sh237 commited on
Commit
b8f4902
·
verified ·
1 Parent(s): 483c2df

Add comprehensive dataset README

Browse files
Files changed (1) hide show
  1. README.md +25 -104
README.md CHANGED
@@ -19,129 +19,50 @@ tags:
19
  - flare-prediction
20
  - astronomy
21
  - time-series
22
- - computer-vision
23
- - deep-learning
24
- - iccv2025
25
  size_categories:
26
  - 10K<n<100K
27
- task_categories:
28
- - time-series-forecasting
29
- - image-classification
30
- pretty_name: FlareBench
31
  ---
32
 
33
- # FlareBench: A Comprehensive Benchmark for Solar Flare Prediction 🌞
34
 
35
- [![ICCV 2025](https://img.shields.io/badge/ICCV-2025-b31b1b.svg)](https://iccv.thecvf.com/)
36
- [![arXiv](https://img.shields.io/badge/arXiv-2508.07847-b31b1b.svg)](https://arxiv.org/abs/2508.07847)
37
- [![Project Page](https://img.shields.io/badge/Project-Page-brightgreen.svg)](https://keio-smilab25.github.io/DeepSWM)
38
 
39
- **FlareBench** is a novel benchmark dataset for solar flare prediction that covers the entire 11-year solar activity cycle. This dataset was introduced in our ICCV 2025 paper "Deep Space Weather Model: Long-Range Solar Flare Prediction from Multi-Wavelength Images".
40
-
41
- ### Why FlareBench?
42
-
43
- Most conventional datasets for solar flare prediction do not cover diverse solar activity states. Consequently, models trained on such datasets can exhibit biases towards specific periods of solar activity. Furthermore, many datasets contain only small, low-resolution sunspot patches.
44
-
45
- **FlareBench presents unique challenges:**
46
- - Requires modeling long-term, diverse solar states spanning the entire 11-year solar cycle
47
- - Demands computationally efficient architectures for multi-wavelength images capturing multi-layered physical phenomena
48
- - Handles highly imbalanced class distributions that vary significantly across different years
49
-
50
- ## 🗂️ Dataset Structure
51
 
52
  ```
53
- FlareBench/
54
- ├── solar_images/
55
- ├── aia/ # Atmospheric Imaging Assembly (9 wavelengths)
56
- │ │ ├── 2011/ # 📊 Data available (Apr-Dec 2011)
57
- │ │ ├── 2012/ # 📂 Same structure as 2011, no data files
58
- │ │ ├── ...
59
- │ │ └── 2024/
60
- │ └── hmi/ # Helioseismic and Magnetic Imager
61
- │ ├── 2011/ # 📊 Data available (Jan-Dec 2011)
62
- │ ├── 2012/ # 📂 Same structure as 2011, no data files
63
- │ └── ...
64
- └── xrs/ # X-Ray Sensor data from GOES satellites
65
- ├── 2011/ # 📊 Data available (full year)
66
- ├── 2012/ # 📂 Same structure as 2011, no data files
67
  └── ...
68
  ```
69
 
70
- ## 📈 Dataset Statistics
71
-
72
- - **Total Samples**: 95,837 (after quality filtering)
73
- - **Time Period**: June 2011 - November 2022 (full solar cycle)
74
- - **Temporal Resolution**: 1-hour cadence
75
- - **Spatial Resolution**: Full-disk solar observations
76
- - **Class Distribution**:
77
- - X-class: 1,750 samples (1.8%)
78
- - M-class: 13,263 samples (13.8%)
79
- - C-class: 34,978 samples (36.5%)
80
- - No-flare: 47,775 samples (49.9%)
81
-
82
- ### Data Composition
83
-
84
- **Solar Images:**
85
- - **AIA (Atmospheric Imaging Assembly)**: Multi-wavelength extreme ultraviolet observations capturing the multi-layered coronal atmosphere
86
- - **HMI (Helioseismic and Magnetic Imager)**: Line-of-sight and vector magnetic field observations from the photosphere
87
-
88
- **X-Ray Sensor Data:**
89
- - **XRS**: Solar X-ray flux measurements from GOES satellites
90
- - **Formats**: Both CSV and NetCDF files
91
- - **Content**: Raw and processed solar X-ray flux data
92
-
93
- ## 🎯 Prediction Task
94
-
95
- FlareBench focuses on predicting the **maximum class of solar flare within the next 24 hours**, following standard approaches in solar flare prediction research. The prediction classes are:
96
 
97
- - **X-class**: Major flares (≥10⁻⁴ W/m²)
98
- - **M-class**: Moderate flares (10⁻⁵ to 10⁻⁴ W/m²)
99
- - **C-class**: Minor flares (10⁻⁶ to 10⁻⁵ W/m²)
100
- - **No-flare**: Below C-class threshold
101
 
102
- ## 📧 Request Full Dataset
103
 
104
- **Need data from other years (2012-2022)?** Please contact us at: ng_sh@keio.jp
105
 
106
- We will provide access to the complete dataset for research purposes. Please include:
107
- - Your research affiliation
108
- - Brief description of your research project
109
- - Intended use of the dataset
110
- - Preferred data transfer method
111
 
112
- ## 📚 Citation
113
-
114
- If you use FlareBench in your research, please cite our ICCV 2025 paper:
115
 
116
  ```bibtex
117
- @inproceedings{nagashima2025deepswm,
118
- title={Deep Space Weather Model: Long-Range Solar Flare Prediction from Multi-Wavelength Images},
119
- author={Shunya Nagashima and Komei Sugiura},
120
- booktitle={Proceedings of the IEEE/CVF International Conference on Computer Vision},
121
- year={2025}
 
122
  }
123
  ```
124
 
125
- ## 🔗 Related Resources
126
-
127
- - **Paper**: [arXiv:2508.07847](https://arxiv.org/abs/2508.07847)
128
- - **Project Page**: [https://keio-smilab25.github.io/DeepSWM](https://keio-smilab25.github.io/DeepSWM)
129
- - **Code**: https://github.com/keio-smilab25/DeepSWM
130
-
131
- ## 📄 License
132
-
133
- This dataset is released under the **Creative Commons Attribution 4.0 International License (CC BY 4.0)**.
134
-
135
- ## 🤝 Acknowledgments
136
-
137
- This dataset is built using observations from:
138
- - **Solar Dynamics Observatory (SDO)**: NASA's flagship solar observation mission
139
- - **GOES Satellites**: NOAA's Geostationary Operational Environmental Satellites
140
-
141
- ## 📞 Contact
142
-
143
- For questions, issues, or collaboration opportunities:
144
-
145
- - **Primary Contact**: Shunya Nagashima - [email protected]
146
- - **Institution**: Keio University
147
 
 
 
19
  - flare-prediction
20
  - astronomy
21
  - time-series
 
 
 
22
  size_categories:
23
  - 10K<n<100K
 
 
 
 
24
  ---
25
 
26
+ # FlareBench Dataset
27
 
28
+ This dataset contains solar observation data for solar flare prediction research, specifically focusing on the year 2011.
 
 
29
 
30
+ ## Dataset Structure
 
 
 
 
 
 
 
 
 
 
 
31
 
32
  ```
33
+ solar_images/
34
+ └── aia/
35
+ ├── 2011/
36
+ ├── 2012/
37
+ ├── 2013/
 
 
 
 
 
 
 
 
 
38
  └── ...
39
  ```
40
 
41
+ ## Data Description
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
+ - **solar_images/aia/**: AIA (Atmospheric Imaging Assembly) solar images from SDO
44
+ - Multi-wavelength solar observations
45
+ - Organized by year and date
46
+ - FITS format files with calibrated data
47
 
48
+ ## License
49
 
50
+ This dataset is released under the Creative Commons Attribution 4.0 International License (CC BY 4.0).
51
 
52
+ ## Citation
 
 
 
 
53
 
54
+ If you use this dataset in your research, please cite:
 
 
55
 
56
  ```bibtex
57
+ @dataset{flarebench2024,
58
+ title={FlareBench: A Comprehensive Dataset for Solar Flare Prediction},
59
+ author={[Author Names]},
60
+ year={2024},
61
+ publisher={Hugging Face},
62
+ url={https://huggingface.co/datasets/sh237/FlareBench}
63
  }
64
  ```
65
 
66
+ ## Contact
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
 
68
+ For questions or issues regarding this dataset, please contact [contact information].