├── .gitattributes ├── .gitignore ├── README.md ├── download_raw_data.py ├── ground_truth.gif ├── lstm_model.py ├── model.png ├── predicted.gif ├── raw_data_to_imges.py ├── validation.py └── weather_LSTM.ipynb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrosDemetrakopoulos/LSTM-radar-precipitation-forecast/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrosDemetrakopoulos/LSTM-radar-precipitation-forecast/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrosDemetrakopoulos/LSTM-radar-precipitation-forecast/HEAD/README.md -------------------------------------------------------------------------------- /download_raw_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrosDemetrakopoulos/LSTM-radar-precipitation-forecast/HEAD/download_raw_data.py -------------------------------------------------------------------------------- /ground_truth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrosDemetrakopoulos/LSTM-radar-precipitation-forecast/HEAD/ground_truth.gif -------------------------------------------------------------------------------- /lstm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrosDemetrakopoulos/LSTM-radar-precipitation-forecast/HEAD/lstm_model.py -------------------------------------------------------------------------------- /model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrosDemetrakopoulos/LSTM-radar-precipitation-forecast/HEAD/model.png -------------------------------------------------------------------------------- /predicted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrosDemetrakopoulos/LSTM-radar-precipitation-forecast/HEAD/predicted.gif -------------------------------------------------------------------------------- /raw_data_to_imges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrosDemetrakopoulos/LSTM-radar-precipitation-forecast/HEAD/raw_data_to_imges.py -------------------------------------------------------------------------------- /validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrosDemetrakopoulos/LSTM-radar-precipitation-forecast/HEAD/validation.py -------------------------------------------------------------------------------- /weather_LSTM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/petrosDemetrakopoulos/LSTM-radar-precipitation-forecast/HEAD/weather_LSTM.ipynb --------------------------------------------------------------------------------