Skip to content

Instantly share code, notes, and snippets.

View minhhien1996's full-sized avatar
🎯
Focusing

Hiển Đỗ minhhien1996

🎯
Focusing
  • Vietnam
  • 17:09 (UTC +07:00)
View GitHub Profile
@minhhien1996
minhhien1996 / seq2seq.py
Created April 9, 2018 17:10 — forked from ilblackdragon/seq2seq.py
Example of Seq2Seq with Attention using all the latest APIs
import logging
import numpy as np
import tensorflow as tf
from tensorflow.contrib import layers
GO_TOKEN = 0
END_TOKEN = 1
UNK_TOKEN = 2
@minhhien1996
minhhien1996 / introrx.md
Created September 27, 2017 08:57 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing