├── .gitignore ├── README.md ├── Stock Market Sentiment with LSTMs and TensorFlow.ipynb ├── checkpoints └── .gitignore ├── data └── StockTwits_SPY_Sentiment_2017.gz ├── dockerfiles ├── Dockerfile.cpu ├── Dockerfile.gpu └── requirements.txt └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretthoffman/lstm-oreilly/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretthoffman/lstm-oreilly/HEAD/README.md -------------------------------------------------------------------------------- /Stock Market Sentiment with LSTMs and TensorFlow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretthoffman/lstm-oreilly/HEAD/Stock Market Sentiment with LSTMs and TensorFlow.ipynb -------------------------------------------------------------------------------- /checkpoints/.gitignore: -------------------------------------------------------------------------------- 1 | checkpoint 2 | *.ckpt.* 3 | -------------------------------------------------------------------------------- /data/StockTwits_SPY_Sentiment_2017.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretthoffman/lstm-oreilly/HEAD/data/StockTwits_SPY_Sentiment_2017.gz -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretthoffman/lstm-oreilly/HEAD/dockerfiles/Dockerfile.cpu -------------------------------------------------------------------------------- /dockerfiles/Dockerfile.gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretthoffman/lstm-oreilly/HEAD/dockerfiles/Dockerfile.gpu -------------------------------------------------------------------------------- /dockerfiles/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pandas 3 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garretthoffman/lstm-oreilly/HEAD/utils.py --------------------------------------------------------------------------------