Data and models for "Center-fixing of tropical cyclones using uncertainty-aware deep learning applied to high-temporal-resolution geostationary satellite imagery" by Lagerquist et al.
收藏资源简介:
The file geocenter_models.tar contains all models comprising the GeoCenter ensemble: 4 convolutional neural networks (CNN) and 4 isotonic-regression models. Every model is found in a subdirectory whose names indicate which infrared (IR) wavelengths are used as input to the CNN. For example: wavelengths-microns=3.900_6.185_6.950/model.h5: An HDF5 file containing the trained CNN that uses data from bands 7, 8, 9 (corresponding to 3.9, 6.185, and 6.95 microns on the GOES ABI imager). The trained CNN can always be read by neural_net_utils.read_model() in the ml4tccf library (https://doi.org/10.5281/zenodo.13787645). wavelengths-microns=3.900_6.185_6.950/model_metadata.p: A Pickle file containing metadata for the trained CNN. This file is needed to read the CNN itself with neural_net_utils.read_model(). Otherwise, you will probably never need to access this metafile directly. wavelengths-microns=3.900_6.185_6.950/isotonic_regression/isotonic_regression.dill: A Dill file containing the isotonic-regression models used to bias-correct the above CNN. The trained isotonic-regression models can always be read by scalar_isotonic_regression.read_file() in the ml4tccf library. Note that there are technically two isotonic-regression models for every CNN: one that bias-corrects the x-coordinate of the TC-center, another that bias-corrects the y-coordinate. As mentioned above, every trained CNN can be read by neural_net_utils.read_model(). Also, every trained CNN can be applied to new data (inference mode) by neural_net_utils.apply_model(). The input argument model_object should be the object returned by neural_net_utils.read_model(), and I suggest setting num_examples_per_batch = 10 to avoid out-of-memory errors. The only other input argument is predictor_matrices, which is a list of two numpy arrays. The first numpy array contains IR imagery centered at the first-guess TC center, and the second numpy array contains ATCF scalars. The first numpy array should have dimensions S (number of TC samples) x 500 (grid rows) x 500 (grid columns) x 7 (lag times) x 3 (wavelengths). Lag times should be in the following order: 180, 150, 120, 90, 60, 30, 0 min ago. Wavelengths should be in the order indicated by the subdirectory name. The numpy array itself should contain normalized brightness temperatures at the given lag times and wavelengths, following the grid specifications laid out in the journal paper (a plate carrée grid with 2-km spacing). The original IR data (brightness temperatures) must be normalized to z-scores using the same normalization parameters as in the journal paper, i.e., those based on the training data. See details below. The second numpy array in predictor_matrices should have dimensions S (number of TC samples) x 9 (variables). The variables must in the order: absolute latitude, cosine of longitude, sine of longitude, TC intensity, minimum central pressure, tropical flag, subtropical flag, extratropical flag, disturbance flag. The journal paper contains details on all these variables in one table. These variables must come from A-deck files at the most recent synoptic time. Like the IR data, these ATCF scalars must be normalized to z-scores using the same normalization parameters as in the journal paper. See details below. Once you have predictions (estimated TC-center locations) from a CNN, you can bias-correct these predictions with isotonic regression. To read the isotonic-regression model corresponding to the given CNN, use scalar_isotonic_regression.read_file() in the ml4tccf library. To apply the isotonic-regression model, use scalar_isotonic_regression.apply_models(). To normalize the IR data, you will need the file ir_satellite_normalization_params.tar included with this dataset. Within the tar file is a single zarr file. You can read the zarr file with normalization.read_file() in the ml4tccf library; then you can normalize new data with normalization.normalize_data(). To normalize the ATCF data, you will need the file a_deck_normalization_params.nc included with this dataset. This is a NetCDF file, containing the full set of training values for all 5 ATCF variables that are normalized (the binary storm-type flags are not normalized). You can read this file using any of the standard Python methods for reading NetCDF files, such as xarray.open_dataset(). To normalize new ATCF data, you can use the method normalization._normalize_one_variable(), where the argument actual_values_training is the list of training values from a_deck_normalization_params.nc for the given variable, while actual_values_new is the list of values to be normalized (currently in physical units, to be converted to z-score units).



