├── .gitattributes ├── .gitignore ├── CModules ├── PyToC │ └── pyarrayCasts.hpp └── viterby │ ├── Viterby_deform.hpp │ ├── pybind11_wrapper.cpp │ └── setup.py ├── ClipCreation.py ├── CreateClimatologyFromLabel.py ├── FrontPostProcessing.py ├── FrontalCrossSection.py ├── GeneralInference.py ├── IOModules └── csbReader.py ├── InferOutputs.py ├── LICENSE ├── Models └── FDU3D.py ├── MyLossFunctions.py ├── MyTransformations.py ├── NetInfoImport.py ├── ParallelStarter.py ├── README.md ├── Scripts_and_Examples ├── Calculate_CSI.sh ├── Create_Climatology.sh ├── Create_Cross_Section.sh ├── Create_Output_Samples.sh ├── Create_Output_Samples_raw.sh ├── RunCModulesSetup.sh ├── Trained_Examples │ ├── Both │ │ ├── PreTrainedNetwork.pth │ │ └── data_set_info.txt │ ├── DWD │ │ ├── PreTrainedNetwork.pth │ │ └── data_set_info.txt │ └── NWS │ │ ├── PreTrainedNetwork.pth │ │ └── data_set_info.txt └── train.sh ├── Training.py ├── era5dataset ├── ERA5Reader │ ├── L137Levels.py │ ├── readNetCDF.py │ └── util │ │ └── readHDF4.py ├── EraExtractors.py └── FrontDataset.py ├── getAffectedEvents.py ├── getEventRatio.py └── getRandomSamples.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /CModules/PyToC/pyarrayCasts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/CModules/PyToC/pyarrayCasts.hpp -------------------------------------------------------------------------------- /CModules/viterby/Viterby_deform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/CModules/viterby/Viterby_deform.hpp -------------------------------------------------------------------------------- /CModules/viterby/pybind11_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/CModules/viterby/pybind11_wrapper.cpp -------------------------------------------------------------------------------- /CModules/viterby/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/CModules/viterby/setup.py -------------------------------------------------------------------------------- /ClipCreation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/ClipCreation.py -------------------------------------------------------------------------------- /CreateClimatologyFromLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/CreateClimatologyFromLabel.py -------------------------------------------------------------------------------- /FrontPostProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/FrontPostProcessing.py -------------------------------------------------------------------------------- /FrontalCrossSection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/FrontalCrossSection.py -------------------------------------------------------------------------------- /GeneralInference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/GeneralInference.py -------------------------------------------------------------------------------- /IOModules/csbReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/IOModules/csbReader.py -------------------------------------------------------------------------------- /InferOutputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/InferOutputs.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/LICENSE -------------------------------------------------------------------------------- /Models/FDU3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Models/FDU3D.py -------------------------------------------------------------------------------- /MyLossFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/MyLossFunctions.py -------------------------------------------------------------------------------- /MyTransformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/MyTransformations.py -------------------------------------------------------------------------------- /NetInfoImport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/NetInfoImport.py -------------------------------------------------------------------------------- /ParallelStarter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/ParallelStarter.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/README.md -------------------------------------------------------------------------------- /Scripts_and_Examples/Calculate_CSI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/Calculate_CSI.sh -------------------------------------------------------------------------------- /Scripts_and_Examples/Create_Climatology.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/Create_Climatology.sh -------------------------------------------------------------------------------- /Scripts_and_Examples/Create_Cross_Section.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/Create_Cross_Section.sh -------------------------------------------------------------------------------- /Scripts_and_Examples/Create_Output_Samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/Create_Output_Samples.sh -------------------------------------------------------------------------------- /Scripts_and_Examples/Create_Output_Samples_raw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/Create_Output_Samples_raw.sh -------------------------------------------------------------------------------- /Scripts_and_Examples/RunCModulesSetup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/RunCModulesSetup.sh -------------------------------------------------------------------------------- /Scripts_and_Examples/Trained_Examples/Both/PreTrainedNetwork.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/Trained_Examples/Both/PreTrainedNetwork.pth -------------------------------------------------------------------------------- /Scripts_and_Examples/Trained_Examples/Both/data_set_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/Trained_Examples/Both/data_set_info.txt -------------------------------------------------------------------------------- /Scripts_and_Examples/Trained_Examples/DWD/PreTrainedNetwork.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/Trained_Examples/DWD/PreTrainedNetwork.pth -------------------------------------------------------------------------------- /Scripts_and_Examples/Trained_Examples/DWD/data_set_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/Trained_Examples/DWD/data_set_info.txt -------------------------------------------------------------------------------- /Scripts_and_Examples/Trained_Examples/NWS/PreTrainedNetwork.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/Trained_Examples/NWS/PreTrainedNetwork.pth -------------------------------------------------------------------------------- /Scripts_and_Examples/Trained_Examples/NWS/data_set_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/Trained_Examples/NWS/data_set_info.txt -------------------------------------------------------------------------------- /Scripts_and_Examples/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Scripts_and_Examples/train.sh -------------------------------------------------------------------------------- /Training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/Training.py -------------------------------------------------------------------------------- /era5dataset/ERA5Reader/L137Levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/era5dataset/ERA5Reader/L137Levels.py -------------------------------------------------------------------------------- /era5dataset/ERA5Reader/readNetCDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/era5dataset/ERA5Reader/readNetCDF.py -------------------------------------------------------------------------------- /era5dataset/ERA5Reader/util/readHDF4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/era5dataset/ERA5Reader/util/readHDF4.py -------------------------------------------------------------------------------- /era5dataset/EraExtractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/era5dataset/EraExtractors.py -------------------------------------------------------------------------------- /era5dataset/FrontDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/era5dataset/FrontDataset.py -------------------------------------------------------------------------------- /getAffectedEvents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/getAffectedEvents.py -------------------------------------------------------------------------------- /getEventRatio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/getEventRatio.py -------------------------------------------------------------------------------- /getRandomSamples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stnie/FrontDetection/HEAD/getRandomSamples.py --------------------------------------------------------------------------------