This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# | |
# This file is a rewriting of the tensorflow tutorial in https://medium.com/@erikhallstrm/hello-world-rnn-83cd7105b767 | |
# The objective is to train a RNN with LSTM for an objective function that is "entry function shifted three times". | |
# LSTM allows for longer time dependencies. | |
#MODEL PARAMETERS | |
num_epochs <- 100 | |
total_series_length <- 75000 |