Skip to content

Instantly share code, notes, and snippets.

View Met7's full-sized avatar

Dominik Met7

View GitHub Profile
@Met7
Met7 / rnn-lstm.py
Last active August 17, 2017 23:17 — 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
NUM_EXAMPLES = 10000