├── Dataset.lua ├── Embedding.lua ├── GRU.lua ├── LSTM.lua ├── README.md ├── ReNN.lua ├── S2SAttention.lua ├── Seq2Seq.lua ├── bot.py ├── data └── README.md ├── model_utils.lua ├── sample.lua ├── server.lua ├── test.lua └── train.lua /Dataset.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/Dataset.lua -------------------------------------------------------------------------------- /Embedding.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/Embedding.lua -------------------------------------------------------------------------------- /GRU.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/GRU.lua -------------------------------------------------------------------------------- /LSTM.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/LSTM.lua -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/README.md -------------------------------------------------------------------------------- /ReNN.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/ReNN.lua -------------------------------------------------------------------------------- /S2SAttention.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/S2SAttention.lua -------------------------------------------------------------------------------- /Seq2Seq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/Seq2Seq.lua -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/bot.py -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model_utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/model_utils.lua -------------------------------------------------------------------------------- /sample.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/sample.lua -------------------------------------------------------------------------------- /server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/server.lua -------------------------------------------------------------------------------- /test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/test.lua -------------------------------------------------------------------------------- /train.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsarxiv/seq2seq-attention/HEAD/train.lua --------------------------------------------------------------------------------