All Projects → paulx3 → keras_generative_pg

paulx3 / keras_generative_pg

Licence: other
A Deep Generative Framework for Paraphrase Generation Implementaion

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to keras generative pg

RealTime-DigitRecognition
RealTime DigitRecognition using Convolutional Neural Network(CNN) with keras.
Stars: ✭ 108 (+38.46%)
Mutual labels:  keras-neural-networks
Nearest-Celebrity-Face
Tensorflow Implementation of FaceNet: A Unified Embedding for Face Recognition and Clustering to find the celebrity whose face matches the closest to yours.
Stars: ✭ 30 (-61.54%)
Mutual labels:  keras-neural-networks
Deep-Learning-Coursera
Projects from the Deep Learning Specialization from deeplearning.ai provided by Coursera
Stars: ✭ 123 (+57.69%)
Mutual labels:  keras-neural-networks
Machine-Learning-Notebooks
15+ Machine/Deep Learning Projects in Ipython Notebooks
Stars: ✭ 66 (-15.38%)
Mutual labels:  keras-neural-networks
Recurrent-Neural-Network-for-BitCoin-price-prediction
Recurrent Neural Network (LSTM) by using TensorFlow and Keras in Python for BitCoin price prediction
Stars: ✭ 53 (-32.05%)
Mutual labels:  keras-neural-networks
babble-rnn
babble-rnn is a research project in the use of machine learning to generate new speech by modelling human speech audio, without any intermediate text or word representations. The idea is to learn to speak through imitation, much like a baby might.
Stars: ✭ 34 (-56.41%)
Mutual labels:  keras-neural-networks
AI-Chatbot
AI Chatbot using Dynamic Memory Network in Keras.
Stars: ✭ 64 (-17.95%)
Mutual labels:  keras-neural-networks
dl-relu
Deep Learning using Rectified Linear Units (ReLU)
Stars: ✭ 20 (-74.36%)
Mutual labels:  keras-neural-networks
cartpole-rl-remote
CartPole game by Reinforcement Learning, a journey from training to inference
Stars: ✭ 24 (-69.23%)
Mutual labels:  keras-neural-networks
Offline-Signature-Verification
Implemented two papers for offline signature verification. Both use different deep learning techniques - Convolutional network and Siamese network.
Stars: ✭ 24 (-69.23%)
Mutual labels:  keras-neural-networks
MI-MVI 2016
Semestral project for the subject Methods of computational inteligence @ fit.cvut.cz
Stars: ✭ 24 (-69.23%)
Mutual labels:  keras-neural-networks
Final-year-project-deep-learning-models
Deep learning for freehand sketch object recognition
Stars: ✭ 22 (-71.79%)
Mutual labels:  keras-neural-networks
stock-volatility-google-trends
Deep Learning Stock Volatility with Google Domestic Trends: https://arxiv.org/pdf/1512.04916.pdf
Stars: ✭ 74 (-5.13%)
Mutual labels:  keras-neural-networks
Artificial-Neural-Networks-Visualizer
Visualizing Artificial Neural Networks (ANNs) with just One Line of Code
Stars: ✭ 21 (-73.08%)
Mutual labels:  keras-neural-networks
DeepLearningCode
深度学习相关代码
Stars: ✭ 21 (-73.08%)
Mutual labels:  keras-neural-networks
GTAV-Self-driving-car
Self driving car in GTAV with Deep Learning
Stars: ✭ 15 (-80.77%)
Mutual labels:  keras-neural-networks
Keras4Delphi
Keras4Delphi is a high-level neural networks API, written in Pascal with Python Binding
Stars: ✭ 37 (-52.56%)
Mutual labels:  keras-neural-networks
stocktwits-sentiment
Stocktwits market sentiment analysis in Python with Keras and TensorFlow.
Stars: ✭ 23 (-70.51%)
Mutual labels:  keras-neural-networks
stone paper scissor defeator using opencv keras
In this repository i tried to replicate a cool project by a japanese scientist who made a machine which had 100 % accuracy in defeating humans in the game of stone-paper and scissors
Stars: ✭ 22 (-71.79%)
Mutual labels:  keras-neural-networks
Deep-learning-model-deploy-with-django
Serving a keras model (neural networks) in a website with the python Django-REST framework.
Stars: ✭ 76 (-2.56%)
Mutual labels:  keras-neural-networks

Paraphrase generation based on LSTM-VAE by wanzeyu

Overview

Keras implementation for A Deep Generative Framework for Paraphrase Generation.

Resource Used:

  1. MSRP paraphrase corpus

  2. Fasttext's pretrained vector

Requirements:

  1. Keras
  2. Numpy

In this project I try to implement novel VAE-LSTM architecture mentioned in A Deep Generative Framework for Paraphrase Generation.

QuickStart

Use python example.py. The code will train on the corpus and print predicted result after every epoch.

By default ,the program will be in training mode and will save model to three files.

The default epoch is 200.

If you want to change the parameters. You have to change according lines.

Resource

  • test_source.txt is the original file
  • test_target.txt is the paraphrase file
  • wiki.simple.vec is fasttext's pretrained vector on simple wiki

Model Architecture

encoder model:

encoder

decoder model:

decoder

vae overview:

overview

Problems

  1. I didn't write a proper test function or use BLEU to evaluate. This has to be done after I found out what's wrong with my implementation.

Progress

  • Implement the basic framework of the thesis
  • Write the evaluation code
  • Refactor and clean up the messy code

References

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