├── .gitignore ├── LICENSE ├── README.md ├── _analyze_models_nohigh.ipynb ├── _analyze_models_v1.0.ipynb ├── _analyze_outOfSample.ipynb ├── _compare_obs.ipynb ├── _compare_random_seeds.ipynb ├── _plot_temps.ipynb ├── _train_model_v4.0_loopA.ipynb ├── _train_model_v4.0_rev2.ipynb ├── _visualize_xai_v1.0.ipynb ├── custom_metrics.py ├── data_processing.py ├── experiment_settings.py ├── file_methods.py ├── initial_processing ├── _process_data_step1.ipynb ├── _process_data_step2.ipynb ├── _process_data_step2_archived.ipynb └── curl-ucar.cgd.cesm2le.atm.proc.monthly_ave.TREFHT-20220228T0728Z.sh ├── network.py ├── plots.py └── xai.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/README.md -------------------------------------------------------------------------------- /_analyze_models_nohigh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/_analyze_models_nohigh.ipynb -------------------------------------------------------------------------------- /_analyze_models_v1.0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/_analyze_models_v1.0.ipynb -------------------------------------------------------------------------------- /_analyze_outOfSample.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/_analyze_outOfSample.ipynb -------------------------------------------------------------------------------- /_compare_obs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/_compare_obs.ipynb -------------------------------------------------------------------------------- /_compare_random_seeds.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/_compare_random_seeds.ipynb -------------------------------------------------------------------------------- /_plot_temps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/_plot_temps.ipynb -------------------------------------------------------------------------------- /_train_model_v4.0_loopA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/_train_model_v4.0_loopA.ipynb -------------------------------------------------------------------------------- /_train_model_v4.0_rev2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/_train_model_v4.0_rev2.ipynb -------------------------------------------------------------------------------- /_visualize_xai_v1.0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/_visualize_xai_v1.0.ipynb -------------------------------------------------------------------------------- /custom_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/custom_metrics.py -------------------------------------------------------------------------------- /data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/data_processing.py -------------------------------------------------------------------------------- /experiment_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/experiment_settings.py -------------------------------------------------------------------------------- /file_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/file_methods.py -------------------------------------------------------------------------------- /initial_processing/_process_data_step1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/initial_processing/_process_data_step1.ipynb -------------------------------------------------------------------------------- /initial_processing/_process_data_step2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/initial_processing/_process_data_step2.ipynb -------------------------------------------------------------------------------- /initial_processing/_process_data_step2_archived.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/initial_processing/_process_data_step2_archived.ipynb -------------------------------------------------------------------------------- /initial_processing/curl-ucar.cgd.cesm2le.atm.proc.monthly_ave.TREFHT-20220228T0728Z.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/initial_processing/curl-ucar.cgd.cesm2le.atm.proc.monthly_ave.TREFHT-20220228T0728Z.sh -------------------------------------------------------------------------------- /network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/network.py -------------------------------------------------------------------------------- /plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/plots.py -------------------------------------------------------------------------------- /xai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eabarnes1010/target_temp_detection/HEAD/xai.py --------------------------------------------------------------------------------