├── .gitattributes ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R └── lstm_wrapper.R ├── README.md ├── man ├── LSTM.Rd ├── gen_news.Rd ├── hyperparameter_tuning.Rd ├── initialize_session.Rd ├── interval_predict.Rd ├── load_lstm.Rd ├── predict.Rd ├── ragged_interval_predict.Rd ├── ragged_preds.Rd ├── save_lstm.Rd ├── select_model.Rd └── variable_selection.Rd ├── nowcastLSTM_example.html └── nowcastLSTM_example.zip /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-detectable=false 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/lstm_wrapper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/R/lstm_wrapper.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/README.md -------------------------------------------------------------------------------- /man/LSTM.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/LSTM.Rd -------------------------------------------------------------------------------- /man/gen_news.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/gen_news.Rd -------------------------------------------------------------------------------- /man/hyperparameter_tuning.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/hyperparameter_tuning.Rd -------------------------------------------------------------------------------- /man/initialize_session.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/initialize_session.Rd -------------------------------------------------------------------------------- /man/interval_predict.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/interval_predict.Rd -------------------------------------------------------------------------------- /man/load_lstm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/load_lstm.Rd -------------------------------------------------------------------------------- /man/predict.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/predict.Rd -------------------------------------------------------------------------------- /man/ragged_interval_predict.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/ragged_interval_predict.Rd -------------------------------------------------------------------------------- /man/ragged_preds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/ragged_preds.Rd -------------------------------------------------------------------------------- /man/save_lstm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/save_lstm.Rd -------------------------------------------------------------------------------- /man/select_model.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/select_model.Rd -------------------------------------------------------------------------------- /man/variable_selection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/man/variable_selection.Rd -------------------------------------------------------------------------------- /nowcastLSTM_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/nowcastLSTM_example.html -------------------------------------------------------------------------------- /nowcastLSTM_example.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhopp1/nowcastLSTM/HEAD/nowcastLSTM_example.zip --------------------------------------------------------------------------------