Skip to content

Commit 3af429f

Browse files
committed
renamed main notebook, adding some documentation to readme
1 parent 7dee6e7 commit 3af429f

File tree

4 files changed

+1718
-1740
lines changed

4 files changed

+1718
-1740
lines changed

README.md

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,17 @@ This project is structured primarily in Jupyter Notebooks that present theory al
1010

1111
The data for all of the notebooks is included in this repository, but to be able to run the notebooks themselves, it is most convenient to use the supplied conda environment file ([DL.yml](DL.yml)) to create the corresponding conda environment as described [here](https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html#creating-an-environment-from-an-environment-yml-file).
1212

13+
This project also makes use of [GitHub's large file storage (LFS)](https://git-lfs.github.com/) versioning system for data files, which are approximately 360 MB. These data are hdf5 files in the 'data' folder, and you will need git lfs installed to clone these files.
14+
1315
### Notebooks
14-
- [forecasting_Dst_LSTM](forecasting_Dst_LSTM.ipynb) : This notebook features a vanilla LSTM forecasting scheme that achieves state of the art results in multiple hour ahead forecasting of Dst, which has been a primary focus of the community.
15-
- [forecasting_Est_LSTM](forecasting_Est_LSTM.ipynb) : This notebook presents forecasting of Est, which corresponds to the entirely external component of Dst.
16-
- [forecasting_Est_BNN](forecasting_Est_BNN.ipynb) : This notebook contains external coefficient forecasting using probabilistic neural networks. The techniques explored include modeling network weights probabilistically, modeling network outputs probabilistically, and mixing-and-matching these approaches with their deterministic counterparts.
16+
- [forecasting_Dst_LSTM](forecasting_Dst_LSTM.ipynb) : This notebook features a vanilla LSTM forecasting scheme that achieves state of the art results in multiple hour ahead forecasting of Dst, which has been a primary focus of the community.
17+
- [forecasting_Est_LSTM](forecasting_Est_LSTM.ipynb) : This notebook presents forecasting of Est, which corresponds to the entirely external component of Dst.
18+
- [forecasting_Est_prob_NN](forecasting_Est_prob_NN.ipynb) : This notebook contains Est forecasting using probabilistic neural networks. The techniques explored include modeling network weights probabilistically, modeling network outputs probabilistically, and mixing-and-matching these approaches with their deterministic counterparts.
1719
- [burtons_model](burtons_model.ipynb) : This notebook implements the simple empirical model of [Burton et al. 1975](https://doi.org/10.1029/JA080i031p04204), which models Dst evolution via a first order equation in time depending on various solar wind parameters.
1820
- [solar_wind_corona_storms](solar_wind_corona_storms.ipynb) : This notebook provides visualizations of various storms, solar wind observations, and solar disk observations.
1921
- [synthetic_geomagnetic_storms](synthetic_geomagnetic_storms.ipynb) : This notebook implements a toy model of geomagnetic storms in which solar activity is simulated as a series of impulses representing potentially geoeffective mass ejections that in turn generate geomagnetic storms. The goal of this notebook is to explore architectures capable of learning from sparse, impulse-like input time series, which is the basic task necessary for forecasting geomagnetic storms from observations of the solar disk.
22+
- [external_coefficient_statistics](external_coefficient_statistics.ipynb) : This notebook computes statistics for Est and assesses reasonable marginal distributions over Est.
23+
- [manuscript_figures](manuscript_figures.ipynb) : This notebook generates figures for a manuscript submitted to Geophysical Research Letters.
2024

2125

2226
### Python modules
@@ -35,16 +39,7 @@ Data are organized by files containing different datasets organized roughly by s
3539
- [omni_hourly_alldata_smallfilled](omni_hourly_alldata_smallfilled.h5) : All measurements included in the OMNI low-res dataset without flags and uncertainties. Gaps of 72 hours or less have been filled via linear interpolation. This dataset contains all OMNI low res data with no-data values replaced by np.nans.
3640
- [NS41_GPS_hourly](NS41_GPS_hourly.h5) : Magnetic field measurements from GPS satellite NS41, used by Gruet et al. 2018 to achieve improved forecasting.
3741
- [GEOS_xrs_hourly_1986-2018_nogaps](GEOS_xrs_hourly_1986-2018_nogaps.h5) : Short and long channel x-ray flux measurements gathered by the [GOES mission](https://www.ngdc.noaa.gov/stp/satellite/goes/) satellites from 1986-2018. More data is available, but the specification of primary and secondary satellites since 1986 facilitated downloading this dataset.
38-
- [external_coefficients](external_coefficients.ipynb) :
39-
- [cme_hourly_complete](cme_hourly_complete.h5) :
40-
41-
42-
## Goals/To do:
43-
44-
- [x] First zonal harmonic prediction with basic LSTM network, [forecasting_Est_LSTM](forecasting_Est_LSTM.ipynb)
45-
- [x] Dst prediction with basic LSTM network (to compare with previous results), [forecasting_Dst_LSTM](forecasting_Dst_LSTM.ipynb)
46-
- [x] Implement Bayes-by-Backprop for modeling weight uncertainty in recurrent neural networks
47-
- [x] Train networks only on storm time series :arrow_right: not much of a sensitivity to this actually
48-
- [x] Consider subsets of input OMNI data to train on and compare effectiveness of corresponding networks :arrow_right: SW parameters are by far the most informative (IMF, speed, particle density, and temperature)
49-
- [ ] Update [forecasting_Est_LSTM](forecasting_Est_LSTM.ipynb) to reflect prediction of Est vs the external coefficient provided by Alexander (possibly just keep Alexander's data, but change notation)
50-
- [ ] Implement Garnelo et al.'s Bayesian neural network architecture and apply to first zonal harmonic prediction
42+
- [external_coefficients](external_coefficients.ipynb) : Coefficients of Earth's external magnetic field on a spherical harmonic basis.
43+
- [cme_hourly_complete](cme_hourly_complete.h5) : [SOHO LASCO CME database](https://cdaw.gsfc.nasa.gov/CMElist/) at hourly sampling. For hours with multiple CMEs, I took the data from the most energetic one.
44+
- [GOES_flare_locations_hourly_1975-2016](GOES_flare_locations_hourly_1975-2016.h5) : GOES flare location database at hourly sampling. For hours with multiple flares, I took the the data from the most central flare on the solar disk for the reason that solar activity near the center of the solar disk is often associated with geoeffective storms.
45+
- [dst_est_ist](dst_est_ist.h5) : Decomposition of Dst into Est and Ist as computed and provided by [NOAA](https://www.ngdc.noaa.gov/geomag/est_ist.shtml).

external_coefficient_statistics.ipynb

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -202,13 +202,6 @@
202202
"plt.title('Est persistence forecasting')\n",
203203
"plt.savefig('../figures/Est_persistence.pdf', bbox_inches='tight')"
204204
]
205-
},
206-
{
207-
"cell_type": "code",
208-
"execution_count": null,
209-
"metadata": {},
210-
"outputs": [],
211-
"source": []
212205
}
213206
],
214207
"metadata": {
@@ -227,9 +220,9 @@
227220
"name": "python",
228221
"nbconvert_exporter": "python",
229222
"pygments_lexer": "ipython3",
230-
"version": "3.6.8"
223+
"version": "3.7.4"
231224
}
232225
},
233226
"nbformat": 4,
234-
"nbformat_minor": 2
227+
"nbformat_minor": 4
235228
}

0 commit comments

Comments
 (0)