├── Config.py ├── Model ├── pollution-hat_y.npy ├── pollution-test_y.npy ├── pollution.h5 └── pollution.npy ├── Plot.py ├── README.md ├── Test.py ├── Train.py ├── layers.png ├── lstm ├── LSTM_Interface.py ├── Predict_Interface.py └── __pycache__ │ ├── LSTM_Interface.cpython-37.pyc │ └── Predict_Interface.cpython-37.pyc ├── pollution.csv ├── project-old-version ├── Config.py ├── GridSearch-lstm.py ├── Model │ ├── model-112-112.h5 │ ├── model-112-48.h5 │ ├── model-112-80.h5 │ ├── model-48-48.h5 │ ├── model-48-64.h5 │ ├── model-48-80.h5 │ ├── model-48-96.h5 │ ├── model-64-112.h5 │ ├── model-64-48.h5 │ ├── model-64-80.h5 │ ├── model-64-96.h5 │ ├── model-80-112.h5 │ ├── model-80-48.h5 │ ├── model-80-64.h5 │ ├── model-80-96.h5 │ ├── model-96-112.h5 │ ├── model-96-64.h5 │ ├── pollutiony_hat.npy │ ├── pollutiony_test.npy │ ├── y_hat-112-48.npy │ ├── y_hat-112-64.npy │ ├── y_hat-112-80.npy │ ├── y_hat-48-112.npy │ ├── y_hat-48-64.npy │ ├── y_hat-48-96.npy │ ├── y_hat-64-112.npy │ ├── y_hat-64-48.npy │ ├── y_hat-64-80.npy │ ├── y_hat-64-96.npy │ ├── y_hat-80-48.npy │ ├── y_hat-80-80.npy │ ├── y_hat-80-96.npy │ ├── y_hat-96-48.npy │ ├── y_test-112-112.npy │ ├── y_test-112-64.npy │ ├── y_test-112-80.npy │ ├── y_test-112-96.npy │ ├── y_test-48-112.npy │ ├── y_test-48-80.npy │ ├── y_test-48-96.npy │ ├── y_test-64-112.npy │ ├── y_test-64-48.npy │ ├── y_test-64-64.npy │ ├── y_test-64-80.npy │ ├── y_test-80-112.npy │ ├── y_test-80-48.npy │ ├── y_test-80-64.npy │ ├── y_test-80-80.npy │ ├── y_test-80-96.npy │ ├── y_test-96-112.npy │ ├── y_test-96-80.npy │ └── y_test-96-96.npy ├── Plot.py ├── README.md ├── StartTest.py ├── StartTrain.py ├── gridsearch.csv ├── lstm │ ├── LSTM_Interface.py │ ├── Predict_Interface.py │ └── __pycache__ │ │ └── LSTM_Interface.cpython-38.pyc ├── pollution.csv └── result.png ├── result.png └── test.png /Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/Config.py -------------------------------------------------------------------------------- /Model/pollution-hat_y.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/Model/pollution-hat_y.npy -------------------------------------------------------------------------------- /Model/pollution-test_y.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/Model/pollution-test_y.npy -------------------------------------------------------------------------------- /Model/pollution.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/Model/pollution.h5 -------------------------------------------------------------------------------- /Model/pollution.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/Model/pollution.npy -------------------------------------------------------------------------------- /Plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/Plot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/README.md -------------------------------------------------------------------------------- /Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/Test.py -------------------------------------------------------------------------------- /Train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/Train.py -------------------------------------------------------------------------------- /layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/layers.png -------------------------------------------------------------------------------- /lstm/LSTM_Interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/lstm/LSTM_Interface.py -------------------------------------------------------------------------------- /lstm/Predict_Interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/lstm/Predict_Interface.py -------------------------------------------------------------------------------- /lstm/__pycache__/LSTM_Interface.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/lstm/__pycache__/LSTM_Interface.cpython-37.pyc -------------------------------------------------------------------------------- /lstm/__pycache__/Predict_Interface.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/lstm/__pycache__/Predict_Interface.cpython-37.pyc -------------------------------------------------------------------------------- /pollution.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/pollution.csv -------------------------------------------------------------------------------- /project-old-version/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Config.py -------------------------------------------------------------------------------- /project-old-version/GridSearch-lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/GridSearch-lstm.py -------------------------------------------------------------------------------- /project-old-version/Model/model-112-112.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-112-112.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-112-48.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-112-48.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-112-80.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-112-80.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-48-48.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-48-48.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-48-64.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-48-64.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-48-80.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-48-80.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-48-96.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-48-96.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-64-112.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-64-112.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-64-48.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-64-48.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-64-80.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-64-80.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-64-96.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-64-96.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-80-112.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-80-112.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-80-48.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-80-48.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-80-64.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-80-64.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-80-96.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-80-96.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-96-112.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-96-112.h5 -------------------------------------------------------------------------------- /project-old-version/Model/model-96-64.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/model-96-64.h5 -------------------------------------------------------------------------------- /project-old-version/Model/pollutiony_hat.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/pollutiony_hat.npy -------------------------------------------------------------------------------- /project-old-version/Model/pollutiony_test.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/pollutiony_test.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-112-48.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-112-48.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-112-64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-112-64.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-112-80.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-112-80.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-48-112.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-48-112.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-48-64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-48-64.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-48-96.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-48-96.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-64-112.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-64-112.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-64-48.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-64-48.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-64-80.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-64-80.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-64-96.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-64-96.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-80-48.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-80-48.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-80-80.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-80-80.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-80-96.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-80-96.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_hat-96-48.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_hat-96-48.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-112-112.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-112-112.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-112-64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-112-64.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-112-80.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-112-80.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-112-96.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-112-96.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-48-112.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-48-112.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-48-80.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-48-80.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-48-96.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-48-96.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-64-112.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-64-112.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-64-48.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-64-48.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-64-64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-64-64.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-64-80.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-64-80.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-80-112.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-80-112.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-80-48.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-80-48.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-80-64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-80-64.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-80-80.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-80-80.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-80-96.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-80-96.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-96-112.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-96-112.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-96-80.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-96-80.npy -------------------------------------------------------------------------------- /project-old-version/Model/y_test-96-96.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Model/y_test-96-96.npy -------------------------------------------------------------------------------- /project-old-version/Plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/Plot.py -------------------------------------------------------------------------------- /project-old-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/README.md -------------------------------------------------------------------------------- /project-old-version/StartTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/StartTest.py -------------------------------------------------------------------------------- /project-old-version/StartTrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/StartTrain.py -------------------------------------------------------------------------------- /project-old-version/gridsearch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/gridsearch.csv -------------------------------------------------------------------------------- /project-old-version/lstm/LSTM_Interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/lstm/LSTM_Interface.py -------------------------------------------------------------------------------- /project-old-version/lstm/Predict_Interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/lstm/Predict_Interface.py -------------------------------------------------------------------------------- /project-old-version/lstm/__pycache__/LSTM_Interface.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/lstm/__pycache__/LSTM_Interface.cpython-38.pyc -------------------------------------------------------------------------------- /project-old-version/pollution.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/pollution.csv -------------------------------------------------------------------------------- /project-old-version/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/project-old-version/result.png -------------------------------------------------------------------------------- /result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/result.png -------------------------------------------------------------------------------- /test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatientEz/lstm-time-series-forecasting_keras/HEAD/test.png --------------------------------------------------------------------------------