hariimurti / Seq2SeqLearn

C# Sequence to Sequence Learning with Attention using LSTM Neural Networks. Based on https://github.com/mashmawy/Seq2SeqLearn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Seq2SeqLearn

Seq2SeqLearn Library is a sequence to sequence learning library written in c# .net. sequence to sequence learning is a general framework that can be used for machine translations, Chatbot or any other sequence classifications problems.

LSTM

LSTM neural network like recurrent neural network used to predict the next element in a time series or sequence. sequence to sequence learning process contain two main blocks Encoder and Decoder.

Encoder

Encoder map the input sequence to fixed length vector.

Decoder

take the encoded vector and predict the output sequence. the library uses the idea of automatic differentiation

License

MIT

About

C# Sequence to Sequence Learning with Attention using LSTM Neural Networks. Based on https://github.com/mashmawy/Seq2SeqLearn


Languages

Language:C# 100.0%