Skip to content

Instantly share code, notes, and snippets.

View savan77's full-sized avatar

Savan Visalpara savan77

View GitHub Profile
@savan77
savan77 / rnn-lstm.py
Last active January 21, 2017 18:05 — forked from monikkinom/rnn-lstm.py
Tensorflow RNN-LSTM implementation to count number of set bits in a binary string
#Source code with the blog post at http://monik.in/a-noobs-guide-to-implementing-rnn-lstm-using-tensorflow/
import numpy as np
import random
from random import shuffle
import tensorflow as tf
# from tensorflow.models.rnn import rnn_cell
# from tensorflow.models.rnn import rnn
##Create Dataset##