├── .gitignore ├── LICENSE ├── LSTM_for_rainfall_runoff_modelling.ipynb ├── README.md └── binder └── environment.yml /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb-checkpoints/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kratzert/pangeo_lstm_example/HEAD/LICENSE -------------------------------------------------------------------------------- /LSTM_for_rainfall_runoff_modelling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kratzert/pangeo_lstm_example/HEAD/LSTM_for_rainfall_runoff_modelling.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kratzert/pangeo_lstm_example/HEAD/README.md -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kratzert/pangeo_lstm_example/HEAD/binder/environment.yml --------------------------------------------------------------------------------