All Projects → jsikyoon → Sequentialdata Gan

jsikyoon / Sequentialdata Gan

Licence: mit
Tensorflow Implementation of GAN modeling for sequential data

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Sequentialdata Gan

Exermote
Using Machine Learning to predict the type of exercise from movement data
Stars: ✭ 108 (+56.52%)
Mutual labels:  gan, lstm
CS231n
My solutions for Assignments of CS231n: Convolutional Neural Networks for Visual Recognition
Stars: ✭ 30 (-56.52%)
Mutual labels:  lstm, gan
Deep Learning With Python
Example projects I completed to understand Deep Learning techniques with Tensorflow. Please note that I do no longer maintain this repository.
Stars: ✭ 134 (+94.2%)
Mutual labels:  gan, lstm
Basicocr
BasicOCR是一个致力于解决自然场景文字识别算法研究的项目。该项目由长城数字大数据应用技术研究院佟派AI团队发起和维护。
Stars: ✭ 336 (+386.96%)
Mutual labels:  gan, lstm
Machine Learning Is All You Need
🔥🌟《Machine Learning 格物志》: ML + DL + RL basic codes and notes by sklearn, PyTorch, TensorFlow, Keras & the most important, from scratch!💪 This repository is ALL You Need!
Stars: ✭ 173 (+150.72%)
Mutual labels:  gan, lstm
Ad examples
A collection of anomaly detection methods (iid/point-based, graph and time series) including active learning for anomaly detection/discovery, bayesian rule-mining, description for diversity/explanation/interpretability. Analysis of incorporating label feedback with ensemble and tree-based detectors. Includes adversarial attacks with Graph Convolutional Network.
Stars: ✭ 641 (+828.99%)
Mutual labels:  gan, lstm
Tensorflow 101
learn code with tensorflow
Stars: ✭ 1,116 (+1517.39%)
Mutual labels:  gan
Frechet Inception Distance
CPU/GPU/TPU implementation of the Fréchet Inception Distance
Stars: ✭ 66 (-4.35%)
Mutual labels:  gan
Limit orderbook prediction
Stars: ✭ 61 (-11.59%)
Mutual labels:  lstm
Deblurgan Tf
Unofficial tensorflow (tf) implementation of DeblurGAN: Blind Motion Deblurring Using Conditional Adversarial Networks
Stars: ✭ 60 (-13.04%)
Mutual labels:  gan
Caffe ocr
主流ocr算法研究实验性的项目,目前实现了CNN+BLSTM+CTC架构
Stars: ✭ 1,156 (+1575.36%)
Mutual labels:  lstm
Pacgan
[NeurIPS 2018] [JSAIT] PacGAN: The power of two samples in generative adversarial networks
Stars: ✭ 67 (-2.9%)
Mutual labels:  gan
Lstm Cnn classification
Stars: ✭ 64 (-7.25%)
Mutual labels:  lstm
Esrgan Tf2
ESRGAN (Enhanced Super-Resolution Generative Adversarial Networks, published in ECCV 2018) implemented in Tensorflow 2.0+. This is an unofficial implementation. With Colab.
Stars: ✭ 61 (-11.59%)
Mutual labels:  gan
Timecop
Time series based anomaly detector
Stars: ✭ 65 (-5.8%)
Mutual labels:  lstm
Sentiment Analysis Nltk Ml Lstm
Sentiment Analysis on the First Republic Party debate in 2016 based on Python,NLTK and ML.
Stars: ✭ 61 (-11.59%)
Mutual labels:  lstm
Bitcoin Price Prediction Using Lstm
Bitcoin price Prediction ( Time Series ) using LSTM Recurrent neural network
Stars: ✭ 67 (-2.9%)
Mutual labels:  lstm
Neural Painters X
Neural Paiters
Stars: ✭ 61 (-11.59%)
Mutual labels:  gan
Sign Language
Sign Language Recognition for Deaf People
Stars: ✭ 65 (-5.8%)
Mutual labels:  lstm
Keras bert classification
Bert-classification and bert-dssm implementation with keras.
Stars: ✭ 67 (-2.9%)
Mutual labels:  lstm

Sequential Data GAN


This module is to generate sequential data with GAN implemented by LSTM.

The basic structure is followed ckmarkoh's git https://github.com/ckmarkoh/GAN-tensorflow

Used Data

For making sequential data, MNIST 0-3 data are used (0->1->2->3).

Modeling

Each modules, genrator and discreminator are designed with 2 layer LSTM and 1 layer Fully Connected Network. Generator is designed as one-to-many model, which get one random vector as input, and generates sequential images. Discriminator is designed as many-to-one model, which get sequential images, and decides that is real or fake ones.

alt tag

Results

Epoch 10 alt tag

Epoch 30 alt tag

Epoch 50 alt tag

Epoch 400 alt tag

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