All Projects → mouradmourafiq → Tensorflow Lstm Regression

mouradmourafiq / Tensorflow Lstm Regression

Licence: mit
Sequence prediction using recurrent neural networks(LSTM) with TensorFlow

Projects that are alternatives of or similar to Tensorflow Lstm Regression

Deep Learning Time Series
List of papers, code and experiments using deep learning for time series forecasting
Stars: ✭ 796 (+83.83%)
Mutual labels:  jupyter-notebook, time-series, lstm, recurrent-neural-networks
Lstm anomaly thesis
Anomaly detection for temporal data using LSTMs
Stars: ✭ 178 (-58.89%)
Mutual labels:  jupyter-notebook, time-series, lstm, recurrent-neural-networks
Pytorch Learners Tutorial
PyTorch tutorial for learners
Stars: ✭ 97 (-77.6%)
Mutual labels:  jupyter-notebook, lstm, recurrent-neural-networks
Linear Attention Recurrent Neural Network
A recurrent attention module consisting of an LSTM cell which can query its own past cell states by the means of windowed multi-head attention. The formulas are derived from the BN-LSTM and the Transformer Network. The LARNN cell with attention can be easily used inside a loop on the cell state, just like any other RNN. (LARNN)
Stars: ✭ 119 (-72.52%)
Mutual labels:  jupyter-notebook, lstm, recurrent-neural-networks
Stock Price Predictor
This project seeks to utilize Deep Learning models, Long-Short Term Memory (LSTM) Neural Network algorithm, to predict stock prices.
Stars: ✭ 146 (-66.28%)
Mutual labels:  jupyter-notebook, lstm, recurrent-neural-networks
Bitcoin Price Prediction Using Lstm
Bitcoin price Prediction ( Time Series ) using LSTM Recurrent neural network
Stars: ✭ 67 (-84.53%)
Mutual labels:  jupyter-notebook, lstm, recurrent-neural-networks
Language Translation
Neural machine translator for English2German translation.
Stars: ✭ 82 (-81.06%)
Mutual labels:  jupyter-notebook, lstm, recurrent-neural-networks
Image Caption Generator
[DEPRECATED] A Neural Network based generative model for captioning images using Tensorflow
Stars: ✭ 141 (-67.44%)
Mutual labels:  jupyter-notebook, lstm, recurrent-neural-networks
Choochoo
Training Diary
Stars: ✭ 186 (-57.04%)
Mutual labels:  jupyter-notebook, jupyter, time-series
Screenshot To Code
A neural network that transforms a design mock-up into a static website.
Stars: ✭ 13,561 (+3031.87%)
Mutual labels:  jupyter-notebook, jupyter, lstm
Pytorch Sentiment Analysis
Tutorials on getting started with PyTorch and TorchText for sentiment analysis.
Stars: ✭ 3,209 (+641.11%)
Mutual labels:  jupyter-notebook, lstm, recurrent-neural-networks
Gdax Orderbook Ml
Application of machine learning to the Coinbase (GDAX) orderbook
Stars: ✭ 60 (-86.14%)
Mutual labels:  jupyter-notebook, lstm, recurrent-neural-networks
Sentiment Analysis Nltk Ml Lstm
Sentiment Analysis on the First Republic Party debate in 2016 based on Python,NLTK and ML.
Stars: ✭ 61 (-85.91%)
Mutual labels:  jupyter-notebook, lstm, recurrent-neural-networks
Pytorch Pos Tagging
A tutorial on how to implement models for part-of-speech tagging using PyTorch and TorchText.
Stars: ✭ 96 (-77.83%)
Mutual labels:  jupyter-notebook, lstm, recurrent-neural-networks
Lstmvis
Visualization Toolbox for Long Short Term Memory networks (LSTMs)
Stars: ✭ 959 (+121.48%)
Mutual labels:  jupyter-notebook, lstm, recurrent-neural-networks
Chinese Chatbot
中文聊天机器人,基于10万组对白训练而成,采用注意力机制,对一般问题都会生成一个有意义的答复。已上传模型,可直接运行,跑不起来直播吃键盘。
Stars: ✭ 124 (-71.36%)
Mutual labels:  jupyter-notebook, jupyter, lstm
Telemanom
A framework for using LSTMs to detect anomalies in multivariate time series data. Includes spacecraft anomaly data and experiments from the Mars Science Laboratory and SMAP missions.
Stars: ✭ 589 (+36.03%)
Mutual labels:  jupyter-notebook, time-series, lstm
Getting Things Done With Pytorch
Jupyter Notebook tutorials on solving real-world problems with Machine Learning & Deep Learning using PyTorch. Topics: Face detection with Detectron 2, Time Series anomaly detection with LSTM Autoencoders, Object Detection with YOLO v5, Build your first Neural Network, Time Series forecasting for Coronavirus daily cases, Sentiment Analysis with BERT.
Stars: ✭ 738 (+70.44%)
Mutual labels:  jupyter-notebook, time-series, lstm
dts
A Keras library for multi-step time-series forecasting.
Stars: ✭ 130 (-69.98%)
Mutual labels:  time-series, recurrent-neural-networks, lstm
LSTM-Time-Series-Analysis
Using LSTM network for time series forecasting
Stars: ✭ 41 (-90.53%)
Mutual labels:  time-series, recurrent-neural-networks, lstm

tensorflow-lstm-regression

This 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.

This example has been updated with a new version compatible with the tensrflow-1.1.0. This new version is using a library polyaxon that provides an API to create deep learning models and experiments based on tensorflow.

Install and Run

Create a Virtual Environment

It is recommended that you create a virtualenv for the setup since this example is highly dependant on the versions set in the requirements file.

To use python3

$ mkvirtualenv -p python3 ltsm
(ltsm) $

To use python2

$ mkvirtualenv ltsm
(ltsm) $

Install Requirements

Requirements for tensorflow-1.1.0 and polyaxon

(ltsm) $ pip install -r ./requirements.txt

Requirement for the old code

The old version of the code 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/tensorflow/mac/cpu/tensorflow-0.11.0-py3-none-any.whl
(ltsm) $ pip install -r ./old_requirements.txt

Running on Jupyter

Three 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

Other Reading

For more details please look at this blog post Sequence prediction using recurrent neural networks(LSTM) with TensorFlow

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].