This is an ipynb notebook that attempts to speed up and simplify the creation of sequence data for the RNN that Harrison create in :
This project contains 2 jupyter notebooks:
- rnn_sentdex.ipynb: This is a reworked version of Harrison's original RNN project
- youtube at: https://www.youtube.com/watch?v=yWkpRdpOiPY&t=488s
- webpost at https://pythonprogramming.net/crypto-rnn-model-deep-learning-python-tensorflow-keras/
- It attempts to simplify and speed up the creation of training and validation data for his RNN model.
- rnn_sentdex_original.ipynb: This is a jupyter notebook that is almost identical to Harrison's code. I have commented out the components of his tensorflow.keras.models.Sequential, and replaced them with keras.layers.SimpleRNN. This replacement seems to run much faster, and arrive at the same place.