All Projects → paulx3 → keras_seq2seq_word_level

paulx3 / keras_seq2seq_word_level

Licence: other
Implementation of seq2seq word-level model using keras

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to keras seq2seq word level

Base-On-Relation-Method-Extract-News-DA-RNN-Model-For-Stock-Prediction--Pytorch
基於關聯式新聞提取方法之雙階段注意力機制模型用於股票預測
Stars: ✭ 33 (+175%)
Mutual labels:  seq2seq
MoChA-pytorch
PyTorch Implementation of "Monotonic Chunkwise Attention" (ICLR 2018)
Stars: ✭ 65 (+441.67%)
Mutual labels:  seq2seq
neural-chat
An AI chatbot using seq2seq
Stars: ✭ 30 (+150%)
Mutual labels:  seq2seq
keras generative pg
A Deep Generative Framework for Paraphrase Generation Implementaion
Stars: ✭ 78 (+550%)
Mutual labels:  keras-neural-networks
GAN-RNN Timeseries-imputation
Recurrent GAN for imputation of time series data. Implemented in TensorFlow 2 on Wikipedia Web Traffic Forecast dataset from Kaggle.
Stars: ✭ 107 (+791.67%)
Mutual labels:  seq2seq
dts
A Keras library for multi-step time-series forecasting.
Stars: ✭ 130 (+983.33%)
Mutual labels:  seq2seq
Video-Cap
🎬 Video Captioning: ICCV '15 paper implementation
Stars: ✭ 44 (+266.67%)
Mutual labels:  seq2seq
torch-asg
Auto Segmentation Criterion (ASG) implemented in pytorch
Stars: ✭ 42 (+250%)
Mutual labels:  seq2seq
ttslearn
ttslearn: Library for Pythonで学ぶ音声合成 (Text-to-speech with Python)
Stars: ✭ 158 (+1216.67%)
Mutual labels:  seq2seq
Aspect-Based-Sentiment-Analysis
No description or website provided.
Stars: ✭ 29 (+141.67%)
Mutual labels:  keras-neural-networks
transformer
Neutron: A pytorch based implementation of Transformer and its variants.
Stars: ✭ 60 (+400%)
Mutual labels:  seq2seq
deep-molecular-optimization
Molecular optimization by capturing chemist’s intuition using the Seq2Seq with attention and the Transformer
Stars: ✭ 60 (+400%)
Mutual labels:  seq2seq
DLCV2018SPRING
Deep Learning for Computer Vision (CommE 5052) in NTU
Stars: ✭ 38 (+216.67%)
Mutual labels:  seq2seq
Neural Conversation Models
Tensorflow based Neural Conversation Models
Stars: ✭ 29 (+141.67%)
Mutual labels:  seq2seq
chatbot
🤖️ 基于 PyTorch 的任务型聊天机器人(支持私有部署和 docker 部署的 Chatbot)
Stars: ✭ 77 (+541.67%)
Mutual labels:  seq2seq
Embedding
Embedding模型代码和学习笔记总结
Stars: ✭ 25 (+108.33%)
Mutual labels:  seq2seq
pytorch2keras
PyTorch to Keras model convertor
Stars: ✭ 788 (+6466.67%)
Mutual labels:  keras-neural-networks
NeuralTextSimplification
Exploring Neural Text Simplification
Stars: ✭ 64 (+433.33%)
Mutual labels:  seq2seq
ai-visual-storytelling-seq2seq
Implementation of seq2seq model for Visual Storytelling Challenge (VIST) http://visionandlanguage.net/VIST/index.html
Stars: ✭ 50 (+316.67%)
Mutual labels:  seq2seq
classy
classy is a simple-to-use library for building high-performance Machine Learning models in NLP.
Stars: ✭ 61 (+408.33%)
Mutual labels:  seq2seq

Keras seq2seq word-level model implementation by wanzeyu

Overview

Keras implementation for seq2seq

In this project I try to implement seq2seq word level model using keras.

Resource Used:

  1. MSRP paraphrase corpus

Requirements:

  1. Keras
  2. Numpy

The reason I open this repo

  • The official tutorial about implementing seq2seq model is character level. But word level implementation is common.

QuickStart

python basic_seq2seq.py

Resource

  • test_source.txt original sentence
  • test_target.txt translation sentence
  • train_vocab.txt vocabulary

Problems

  1. The inference function has some problems

Progress

  • Write the evaluation code
  • Add Attention function
  • Using Bidirectional LSTM in encoder
  • Implementing Joint Copying and Restricted Generation for Paraphrase

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