├── .gitignore ├── LICENSE ├── README.md ├── data └── processed │ └── .gitkeep ├── radar_nowcasting ├── README.md ├── RadarNowcastBenchmarks.ipynb ├── experiments │ └── .gitkeep ├── imgs │ ├── challenge_overview_diagram.png │ ├── input_animation.gif │ ├── input_test_animation.gif │ ├── mrms_animation.gif │ ├── my_animation.gif │ ├── output_animation.gif │ ├── output_test_animation.gif │ ├── pred_test_animation.gif │ └── unet.png ├── make_dataset.py ├── train.py └── unet_benchmark.py ├── requirements.txt ├── src ├── __init__.py ├── display │ ├── __init__.py │ ├── cartopy.py │ ├── display.py │ └── roebber_plot.py ├── generator │ ├── __init__.py │ └── generator.py ├── lightning_nowcasting │ └── __init__.py ├── metrics │ ├── __init__.py │ ├── histogram.py │ └── metrics.py ├── nn │ ├── __init__.py │ └── unet.py ├── radar_nowcasting │ └── __init__.py ├── synthetic_radar │ └── __init__.py └── utils.py └── synthetic_radar ├── README.md ├── make_dataset.py └── unet_benchmark.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/README.md -------------------------------------------------------------------------------- /data/processed/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /radar_nowcasting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/README.md -------------------------------------------------------------------------------- /radar_nowcasting/RadarNowcastBenchmarks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/RadarNowcastBenchmarks.ipynb -------------------------------------------------------------------------------- /radar_nowcasting/experiments/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /radar_nowcasting/imgs/challenge_overview_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/imgs/challenge_overview_diagram.png -------------------------------------------------------------------------------- /radar_nowcasting/imgs/input_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/imgs/input_animation.gif -------------------------------------------------------------------------------- /radar_nowcasting/imgs/input_test_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/imgs/input_test_animation.gif -------------------------------------------------------------------------------- /radar_nowcasting/imgs/mrms_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/imgs/mrms_animation.gif -------------------------------------------------------------------------------- /radar_nowcasting/imgs/my_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/imgs/my_animation.gif -------------------------------------------------------------------------------- /radar_nowcasting/imgs/output_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/imgs/output_animation.gif -------------------------------------------------------------------------------- /radar_nowcasting/imgs/output_test_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/imgs/output_test_animation.gif -------------------------------------------------------------------------------- /radar_nowcasting/imgs/pred_test_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/imgs/pred_test_animation.gif -------------------------------------------------------------------------------- /radar_nowcasting/imgs/unet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/imgs/unet.png -------------------------------------------------------------------------------- /radar_nowcasting/make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/make_dataset.py -------------------------------------------------------------------------------- /radar_nowcasting/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/train.py -------------------------------------------------------------------------------- /radar_nowcasting/unet_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/radar_nowcasting/unet_benchmark.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/display/__init__.py: -------------------------------------------------------------------------------- 1 | from .display import get_cmap -------------------------------------------------------------------------------- /src/display/cartopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/src/display/cartopy.py -------------------------------------------------------------------------------- /src/display/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/src/display/display.py -------------------------------------------------------------------------------- /src/display/roebber_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/src/display/roebber_plot.py -------------------------------------------------------------------------------- /src/generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/src/generator/__init__.py -------------------------------------------------------------------------------- /src/generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/src/generator/generator.py -------------------------------------------------------------------------------- /src/lightning_nowcasting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/metrics/__init__.py: -------------------------------------------------------------------------------- 1 | from .metrics import * -------------------------------------------------------------------------------- /src/metrics/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/src/metrics/histogram.py -------------------------------------------------------------------------------- /src/metrics/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/src/metrics/metrics.py -------------------------------------------------------------------------------- /src/nn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nn/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/src/nn/unet.py -------------------------------------------------------------------------------- /src/radar_nowcasting/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/synthetic_radar/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/src/utils.py -------------------------------------------------------------------------------- /synthetic_radar/README.md: -------------------------------------------------------------------------------- 1 | # Synthetic Weather Radar Challenge 2 | 3 | COMING SOON 4 | -------------------------------------------------------------------------------- /synthetic_radar/make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/synthetic_radar/make_dataset.py -------------------------------------------------------------------------------- /synthetic_radar/unet_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MIT-AI-Accelerator/sevir_challenges/HEAD/synthetic_radar/unet_benchmark.py --------------------------------------------------------------------------------