tensorflow-lstm-regressionThis is an example of a regressor based on recurrent networks:
The objective is to predict continuous values, sin and cos functions in this example, based on previous observations using the LSTM architecture.
Install and RunCreate a Virtual EnvironmentIt is reccomended that you create a virtualenv for the setup since this example is highly dependant on the versions set in the requirements file.
$ virtualenv ~/python/ltsm$ source ~/python/ltsm/bin/activate(ltsm) $
Install RequirementsThis example depends on tensorflow-0.11.0 to work. You will first need to install the requirements. You will need the appropriate version of tensorflow for your platform, this example is for mac. For more details goto TAG tensorflow-0.11.0 Setup
(ltsm) $ pip install -U
https://storage.googleapis.com/t ... .0-py3-none-any.whl(ltsm) $ pip install -r ./requirements.txt
Running on JupyterThree Jupyter notebooks are provided as examples on how to use lstm for predicting shapes. They will be available when you start up Jupyter in the project dir.
(ltsm) $ jupyter notebook