Sentiment Analysis with an RNN

In this notebook, you'll implement a recurrent neural network that performs sentiment analysis. Using an RNN rather than a feedfoward network is more accurate since we can include information about the sequence of words. Here we'll use a dataset of movie reviews, accompanied by labels.

The architecture for this network is shown below.

Here, we'll pass in words to an embedding layer. We need an embedding layer because we have tens of thousands of words, so we'll need a more efficient representation for our input data than one-hot encoded vectors. You should have seen this before from the word2vec lesson. You can actually train up an embedding with word2vec and use it here. But it's good enough to just have an embedding layer and let the network learn the embedding table on it's own.

From the embedding layer, the new representations will be passed to LSTM cells. These will add recurrent connections to the network so we can include information about the sequence of words in the data. Finally, the LSTM cells will go to a sigmoid output layer here. We're using the sigmoid because we're trying to predict if this text has positive or negative sentiment. The output layer will just be a single unit then, with a sigmoid activation function.

We don't care about the sigmoid outputs except for the very last one, we can ignore the rest. We'll calculate the cost from the output of the last step and the training label.


In [1]:
import numpy as np
import tensorflow as tf

In [2]:
with open('../sentiment-network/reviews.txt', 'r') as f:
    reviews = f.read()
with open('../sentiment-network/labels.txt', 'r') as f:
    labels = f.read()

In [ ]:
reviews[:2000]

Data preprocessing

The first step when building a neural network model is getting your data into the proper form to feed into the network. Since we're using embedding layers, we'll need to encode each word with an integer. We'll also want to clean it up a bit.

You can see an example of the reviews data above. We'll want to get rid of those periods. Also, you might notice that the reviews are delimited with newlines \n. To deal with those, I'm going to split the text into each review using \n as the delimiter. Then I can combined all the reviews back together into one big string.

First, let's remove all punctuation. Then get all the text without the newlines and split it into individual words.


In [3]:
from string import punctuation
all_text = ''.join([c for c in reviews if c not in punctuation])
reviews = all_text.split('\n')

all_text = ' '.join(reviews)
words = all_text.split()

In [ ]:
all_text[:2000]

In [ ]:
words[:100]

Encoding the words

The embedding lookup requires that we pass in integers to our network. The easiest way to do this is to create dictionaries that map the words in the vocabulary to integers. Then we can convert each of our reviews into integers so they can be passed into the network.

Exercise: Now you're going to encode the words with integers. Build a dictionary that maps words to integers. Later we're going to pad our input vectors with zeros, so make sure the integers start at 1, not 0. Also, convert the reviews to integers and store the reviews in a new list called reviews_ints.


In [4]:
from collections import Counter
# Create your dictionary that maps vocab words to integers here
counts = Counter(words)
vocab = sorted(counts, key=counts.get, reverse=True)
vocab_to_int = {word: ii for ii, word in enumerate(vocab, 1)}

# Convert the reviews to integers, same shape as reviews list, but with integers
reviews_ints = []
for each in reviews:
    reviews_ints.append([vocab_to_int[word] for word in each.split()])

Encoding the labels

Our labels are "positive" or "negative". To use these labels in our network, we need to convert them to 0 and 1.

Exercise: Convert labels from positive and negative to 1 and 0, respectively.


In [5]:
# Convert labels to 1s and 0s for 'positive' and 'negative'
labels = labels.split('\n')
labels = np.array([1 if each == 'positive' else 0 for each in labels])

If you built labels correctly, you should see the next output.


In [6]:
from collections import Counter
review_lens = Counter([len(x) for x in reviews_ints])
print("Zero-length reviews: {}".format(review_lens[0]))
print("Maximum review length: {}".format(max(review_lens)))


Zero-length reviews: 1
Maximum review length: 2514

Okay, a couple issues here. We seem to have one review with zero length. And, the maximum review length is way too many steps for our RNN. Let's truncate to 200 steps. For reviews shorter than 200, we'll pad with 0s. For reviews longer than 200, we can truncate them to the first 200 characters.

Exercise: First, remove the review with zero length from the reviews_ints list.


In [7]:
# Filter out that review with 0 length
non_zero_idx = [ii for ii, review in enumerate(reviews_ints) if len(review) != 0]
len(non_zero_idx)


Out[7]:
25000

Turns out its the final review that has zero length. But that might not always be the case, so let's make it more general.


In [8]:
reviews_ints = [reviews_ints[ii] for ii in non_zero_idx]
labels = np.array([labels[ii] for ii in non_zero_idx])

Exercise: Now, create an array features that contains the data we'll pass to the network. The data should come from review_ints, since we want to feed integers to the network. Each row should be 200 elements long. For reviews shorter than 200 words, left pad with 0s. That is, if the review is ['best', 'movie', 'ever'], [117, 18, 128] as integers, the row will look like [0, 0, 0, ..., 0, 117, 18, 128]. For reviews longer than 200, use on the first 200 words as the feature vector.

This isn't trivial and there are a bunch of ways to do this. But, if you're going to be building your own deep learning networks, you're going to have to get used to preparing your data.


In [9]:
seq_len = 200
features = np.zeros((len(reviews_ints), seq_len), dtype = int)
for i, row in enumerate(reviews_ints):
    features[i, -len(row):] = np.array(row)[:seq_len]

If you build features correctly, it should look like that cell output below.


In [17]:
features[:10,:100]


Out[17]:
array([[    0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0, 21363,   308,     6,
            3,  1051,   207,     8,  2140,    32,     1,   171,    57,
           15,    49,    81,  5789,    44,   382,   110,   140,    15,
         5241,    60,   154,     9,     1,  5009,  5861,   475,    71,
            5,   260,    12, 21363,   308,    13,  1980,     6,    74,
         2400],
       [    0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,    63,     4,     3,   125,
           36,    47,  7561,  1395,    16,     3,  4205,   505,    45,
           17],
       [23256,    42, 53213,    15,   706, 17548,  3400,    47,    77,
           35,  1819,    16,   154,    19,   114,     3,  1310,     5,
          336,   147,    22,     1,   857,    12,    70,   281,  1170,
          399,    36,   120,   283,    38,   169,     5,   382,   158,
           42,  2272,    16,     1,   541,    90,    78,   102,     4,
            1,  3262,    15,    43,     3,   408,  1068,   136,  8147,
           44,   182,   140,    15,  3050,     1,   321,    22,  4819,
        26702,   346,     5,  3096,  2095,     1, 19640, 18358,    42,
         8147,    46,    33,   236,    29,   370,     5,   130,    56,
           22,     1,  1928,     7,     7,    19,    48,    46,    21,
           70,   344,     3,  2100,     5,   407,    22,     1,  1928,
           16],
       [ 4521,   505,    15,     3,  3349,   162,  8408,  1655,     6,
         4845,    56,    17,  4532,  5623,   140, 11885,     5,   997,
         4927,  2938,  4502,   566,  1201,    36,     6,  1520,    96,
            3,   744,     4, 27140,    13,     5,    27,  3475,     9,
        10630,     4,     8,   111,  3022,     5,     1,  1028,    15,
            3,  4416,    82,    22,  2050,     6,  4502,   538,  2774,
         7131, 39176,    41,   463,     1,  8408, 55001,   302,   123,
           15,  4233,    19,  1668,   922,     1,  1655,     6,  6180,
        20288,    34,     1,   980,  1757, 22490,   646, 25032,    27,
          106, 11833,    13, 14288, 15228, 18616,  2465,   466, 22246,
           36,  3269,     1,  6371,  1020,    45,    17,  2698,  2507,
           33],
       [    0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,   520,   119,   113,    34,
        16762,  1816,  3760,   117,   885, 22212,   721,    10,    28,
          124,   108,     2,   115,   137,     9,  1625,  7793,    26,
          330,     5,   590,     1,  6136,    22,   386,     6,     3,
          349,    15,    50,    15,   231,     9,  7482, 11592,     1,
          191,    22,  9055,     6,    82,   880,   101,   111,  3601,
            4],
       [    0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
           11,    20,  3662,   141,    10,   422,    23,   272,    60,
         4361,    22,    32,    84,  3298,    22,     1,   172,     4,
            1,   952,   506,    11,  4999,  5391,     5,   574,     4,
         1154,    54,    53,  5326,     1,   261,    17,    41,   952,
          125,    59,     1,   712,   137,   379,   626,    15,   111,
         1509],
       [    0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,    11,     6,   693,     1,    90,
         2160,    20, 11962,     1,  2831,  5236,   249,    92,  3012,
            8,   126,    24,   201,     3,   802,   634,     4, 23256,
         1001],
       [    0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,   786,   295,    10,   122,    11,     6,   418,
            5,    29,    35,   482,    20,    19,  1283,    33,   142,
           28,  2664,    45,  1842,    32,     1,  2788,    37,    78,
           97,  2435,    67,  3964,    45,     2,    24,   105,   256,
            1,   134,  1574,     2, 12482,   451,    14,   319,    11,
           63,     6,    98,  1321,     5,   105,     1,  3777,     4,
            3],
       [    0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,     0,     0,
            0,     0,     0,     0,     0,     0,     0,    11,     6,
           24,     1,   779,  3699,  2831,    20,     8,    14,    74,
          325,  2733,    73,    90,     4,    27,    99,     2,   165,
           68],
       [   54,    10,    14,   116,    60,   798,   552,    71,   364,
            5,     1,   730,     5,    66,  8139,     8,    14,    30,
            4,   109,    99,    10,   293,    17,    60,   798,    19,
           11,    14,     1,    64,    30,    69,  2499,    45,     4,
          234,    93,    10,    68,   114,   108,  8139,   363,    43,
         1009,     2,    10,    97,    28,  1431,    45,     1,   357,
            4,    60,   110,   205,     8,    48,     3,  1930, 11063,
            2,  2124,   354,   412,     4,    13,  6637,     2,  2977,
         5159,  2130,  1370,     6,    30,     4,    60,   502,   876,
           19,  8139,     6,    34,   227,     1,   247,   412,     4,
          582,     4,    27,   599,     9,     1, 13742,   395,     4,
        14537]])

Training, Validation, Test

With our data in nice shape, we'll split it into training, validation, and test sets.

Exercise: Create the training, validation, and test sets here. You'll need to create sets for the features and the labels, train_x and train_y for example. Define a split fraction, split_frac as the fraction of data to keep in the training set. Usually this is set to 0.8 or 0.9. The rest of the data will be split in half to create the validation and testing data.


In [10]:
split_frac = 0.8
split_idx = int(len(features) * 0.8)
train_x, val_x = features[:split_idx], features[split_idx:]
train_y, val_y = labels[:split_idx], labels[split_idx:]

test_idx = int(len(val_x) * 0.5)
val_x, test_x = val_x[:test_idx], val_x[test_idx:]
val_y, test_y = val_y[:test_idx], val_y[test_idx:]

print("\t\t\tFeature Shapes:")
print("Train set: \t\t{}".format(train_x.shape), 
      "\nValidation set: \t{}".format(val_x.shape),
      "\nTest set: \t\t{}".format(test_x.shape))


			Feature Shapes:
Train set: 		(20000, 200) 
Validation set: 	(2500, 200) 
Test set: 		(2500, 200)

With train, validation, and text fractions of 0.8, 0.1, 0.1, the final shapes should look like:

                    Feature Shapes:
Train set:       (20000, 200) 
Validation set:     (2500, 200) 
Test set:         (2500, 200)

Build the graph

Here, we'll build the graph. First up, defining the hyperparameters.

  • lstm_size: Number of units in the hidden layers in the LSTM cells. Usually larger is better performance wise. Common values are 128, 256, 512, etc.
  • lstm_layers: Number of LSTM layers in the network. I'd start with 1, then add more if I'm underfitting.
  • batch_size: The number of reviews to feed the network in one training pass. Typically this should be set as high as you can go without running out of memory.
  • learning_rate: Learning rate

In [11]:
lstm_size = 256
lstm_layers = 1
batch_size = 500
learning_rate = 0.001

For the network itself, we'll be passing in our 200 element long review vectors. Each batch will be batch_size vectors. We'll also be using dropout on the LSTM layer, so we'll make a placeholder for the keep probability.

Exercise: Create the inputs_, labels_, and drop out keep_prob placeholders using tf.placeholder. labels_ needs to be two-dimensional to work with some functions later. Since keep_prob is a scalar (a 0-dimensional tensor), you shouldn't provide a size to tf.placeholder.


In [13]:
n_words = len(vocab_to_int)

# Create the graph object
graph = tf.Graph()
# Add nodes to the graph
with graph.as_default():
    inputs_ = tf.placeholder(tf.int32, [None, None], name = 'inputs')
    labels_ = tf.placeholder(tf.int32, [None, None], name = 'labels')
    keep_prob = tf.placeholder(tf.float32, name = 'keeep_prob')

Embedding

Now we'll add an embedding layer. We need to do this because there are 74000 words in our vocabulary. It is massively inefficient to one-hot encode our classes here. You should remember dealing with this problem from the word2vec lesson. Instead of one-hot encoding, we can have an embedding layer and use that layer as a lookup table. You could train an embedding layer using word2vec, then load it here. But, it's fine to just make a new layer and let the network learn the weights.

Exercise: Create the embedding lookup matrix as a tf.Variable. Use that embedding matrix to get the embedded vectors to pass to the LSTM cell with tf.nn.embedding_lookup. This function takes the embedding matrix and an input tensor, such as the review vectors. Then, it'll return another tensor with the embedded vectors. So, if the embedding layer has 200 units, the function will return a tensor with size [batch_size, 200].


In [14]:
# Size of the embedding vectors (number of units in the embedding layer)
embed_size = 300 

with graph.as_default():
    embedding = tf.Variable(tf.random_uniform((n_words, embed_size), -1, 1))
    embed = tf.nn.embedding_lookup(embedding, inputs_)

LSTM cell

Next, we'll create our LSTM cells to use in the recurrent network (TensorFlow documentation). Here we are just defining what the cells look like. This isn't actually building the graph, just defining the type of cells we want in our graph.

To create a basic LSTM cell for the graph, you'll want to use tf.contrib.rnn.BasicLSTMCell. Looking at the function documentation:

tf.contrib.rnn.BasicLSTMCell(num_units, forget_bias=1.0, input_size=None, state_is_tuple=True, activation=<function tanh at 0x109f1ef28>)

you can see it takes a parameter called num_units, the number of units in the cell, called lstm_size in this code. So then, you can write something like

lstm = tf.contrib.rnn.BasicLSTMCell(num_units)

to create an LSTM cell with num_units. Next, you can add dropout to the cell with tf.contrib.rnn.DropoutWrapper. This just wraps the cell in another cell, but with dropout added to the inputs and/or outputs. It's a really convenient way to make your network better with almost no effort! So you'd do something like

drop = tf.contrib.rnn.DropoutWrapper(cell, output_keep_prob=keep_prob)

Most of the time, your network will have better performance with more layers. That's sort of the magic of deep learning, adding more layers allows the network to learn really complex relationships. Again, there is a simple way to create multiple layers of LSTM cells with tf.contrib.rnn.MultiRNNCell:

cell = tf.contrib.rnn.MultiRNNCell([drop] * lstm_layers)

Here, [drop] * lstm_layers creates a list of cells (drop) that is lstm_layers long. The MultiRNNCell wrapper builds this into multiple layers of RNN cells, one for each cell in the list.

So the final cell you're using in the network is actually multiple (or just one) LSTM cells with dropout. But it all works the same from an achitectural viewpoint, just a more complicated graph in the cell.

Exercise: Below, use tf.contrib.rnn.BasicLSTMCell to create an LSTM cell. Then, add drop out to it with tf.contrib.rnn.DropoutWrapper. Finally, create multiple LSTM layers with tf.contrib.rnn.MultiRNNCell.

Here is a tutorial on building RNNs that will help you out.


In [15]:
with graph.as_default():
    # Your basic LSTM cell
    lstm = tf.contrib.rnn.BasicLSTMCell(lstm_size)
    
    # Add dropout to the cell
    drop = tf.contrib.rnn.DropoutWrapper(lstm, output_keep_prob = keep_prob)
    
    # Stack up multiple LSTM layers, for deep learning
    cell = tf.contrib.rnn.MultiRNNCell([drop] * lstm_layers)
    
    # Getting an initial state of all zeros
    initial_state = cell.zero_state(batch_size, tf.float32)

RNN forward pass

Now we need to actually run the data through the RNN nodes. You can use tf.nn.dynamic_rnn to do this. You'd pass in the RNN cell you created (our multiple layered LSTM cell for instance), and the inputs to the network.

outputs, final_state = tf.nn.dynamic_rnn(cell, inputs, initial_state=initial_state)

Above I created an initial state, initial_state, to pass to the RNN. This is the cell state that is passed between the hidden layers in successive time steps. tf.nn.dynamic_rnn takes care of most of the work for us. We pass in our cell and the input to the cell, then it does the unrolling and everything else for us. It returns outputs for each time step and the final_state of the hidden layer.

Exercise: Use tf.nn.dynamic_rnn to add the forward pass through the RNN. Remember that we're actually passing in vectors from the embedding layer, embed.


In [17]:
with graph.as_default():
    outputs, final_state = tf.nn.dynamic_rnn(cell, embed, initial_state = initial_state)

Output

We only care about the final output, we'll be using that as our sentiment prediction. So we need to grab the last output with outputs[:, -1], the calculate the cost from that and labels_.


In [18]:
with graph.as_default():
    predictions = tf.contrib.layers.fully_connected(outputs[:, -1], 1, activation_fn=tf.sigmoid)
    cost = tf.losses.mean_squared_error(labels_, predictions)
    
    optimizer = tf.train.AdamOptimizer(learning_rate).minimize(cost)

Validation accuracy

Here we can add a few nodes to calculate the accuracy which we'll use in the validation pass.


In [19]:
with graph.as_default():
    correct_pred = tf.equal(tf.cast(tf.round(predictions), tf.int32), labels_)
    accuracy = tf.reduce_mean(tf.cast(correct_pred, tf.float32))

Batching

This is a simple function for returning batches from our data. First it removes data such that we only have full batches. Then it iterates through the x and y arrays and returns slices out of those arrays with size [batch_size].


In [20]:
def get_batches(x, y, batch_size=100):
    
    n_batches = len(x)//batch_size
    x, y = x[:n_batches*batch_size], y[:n_batches*batch_size]
    for ii in range(0, len(x), batch_size):
        yield x[ii:ii+batch_size], y[ii:ii+batch_size]

Training

Below is the typical training code. If you want to do this yourself, feel free to delete all this code and implement it yourself. Before you run this, make sure the checkpoints directory exists.


In [21]:
epochs = 10

with graph.as_default():
    saver = tf.train.Saver()

with tf.Session(graph=graph) as sess:
    sess.run(tf.global_variables_initializer())
    iteration = 1
    for e in range(epochs):
        state = sess.run(initial_state)
        
        for ii, (x, y) in enumerate(get_batches(train_x, train_y, batch_size), 1):
            feed = {inputs_: x,
                    labels_: y[:, None],
                    keep_prob: 0.5,
                    initial_state: state}
            loss, state, _ = sess.run([cost, final_state, optimizer], feed_dict=feed)
            
            if iteration%5==0:
                print("Epoch: {}/{}".format(e, epochs),
                      "Iteration: {}".format(iteration),
                      "Train loss: {:.3f}".format(loss))

            if iteration%25==0:
                val_acc = []
                val_state = sess.run(cell.zero_state(batch_size, tf.float32))
                for x, y in get_batches(val_x, val_y, batch_size):
                    feed = {inputs_: x,
                            labels_: y[:, None],
                            keep_prob: 1,
                            initial_state: val_state}
                    batch_acc, val_state = sess.run([accuracy, final_state], feed_dict=feed)
                    val_acc.append(batch_acc)
                print("Val acc: {:.3f}".format(np.mean(val_acc)))
            iteration +=1
    saver.save(sess, "checkpoints/sentiment.ckpt")


Epoch: 0/10 Iteration: 5 Train loss: 0.240
Epoch: 0/10 Iteration: 10 Train loss: 0.241
Epoch: 0/10 Iteration: 15 Train loss: 0.239
Epoch: 0/10 Iteration: 20 Train loss: 0.229
Epoch: 0/10 Iteration: 25 Train loss: 0.181
Val acc: 0.688
Epoch: 0/10 Iteration: 30 Train loss: 0.212
Epoch: 0/10 Iteration: 35 Train loss: 0.201
Epoch: 0/10 Iteration: 40 Train loss: 0.195
Epoch: 1/10 Iteration: 45 Train loss: 0.141
Epoch: 1/10 Iteration: 50 Train loss: 0.147
Val acc: 0.727
Epoch: 1/10 Iteration: 55 Train loss: 0.150
Epoch: 1/10 Iteration: 60 Train loss: 0.177
Epoch: 1/10 Iteration: 65 Train loss: 0.139
Epoch: 1/10 Iteration: 70 Train loss: 0.194
Epoch: 1/10 Iteration: 75 Train loss: 0.187
Val acc: 0.706
Epoch: 1/10 Iteration: 80 Train loss: 0.155
Epoch: 2/10 Iteration: 85 Train loss: 0.156
Epoch: 2/10 Iteration: 90 Train loss: 0.179
Epoch: 2/10 Iteration: 95 Train loss: 0.160
Epoch: 2/10 Iteration: 100 Train loss: 0.143
Val acc: 0.793
Epoch: 2/10 Iteration: 105 Train loss: 0.188
Epoch: 2/10 Iteration: 110 Train loss: 0.293
Epoch: 2/10 Iteration: 115 Train loss: 0.202
Epoch: 2/10 Iteration: 120 Train loss: 0.193
Epoch: 3/10 Iteration: 125 Train loss: 0.159
Val acc: 0.730
Epoch: 3/10 Iteration: 130 Train loss: 0.150
Epoch: 3/10 Iteration: 135 Train loss: 0.141
Epoch: 3/10 Iteration: 140 Train loss: 0.249
Epoch: 3/10 Iteration: 145 Train loss: 0.152
Epoch: 3/10 Iteration: 150 Train loss: 0.158
Val acc: 0.698
Epoch: 3/10 Iteration: 155 Train loss: 0.148
Epoch: 3/10 Iteration: 160 Train loss: 0.159
Epoch: 4/10 Iteration: 165 Train loss: 0.127
Epoch: 4/10 Iteration: 170 Train loss: 0.136
Epoch: 4/10 Iteration: 175 Train loss: 0.156
Val acc: 0.778
Epoch: 4/10 Iteration: 180 Train loss: 0.151
Epoch: 4/10 Iteration: 185 Train loss: 0.141
Epoch: 4/10 Iteration: 190 Train loss: 0.146
Epoch: 4/10 Iteration: 195 Train loss: 0.146
Epoch: 4/10 Iteration: 200 Train loss: 0.132
Val acc: 0.770
Epoch: 5/10 Iteration: 205 Train loss: 0.124
Epoch: 5/10 Iteration: 210 Train loss: 0.133
Epoch: 5/10 Iteration: 215 Train loss: 0.100
Epoch: 5/10 Iteration: 220 Train loss: 0.127
Epoch: 5/10 Iteration: 225 Train loss: 0.161
Val acc: 0.730
Epoch: 5/10 Iteration: 230 Train loss: 0.148
Epoch: 5/10 Iteration: 235 Train loss: 0.120
Epoch: 5/10 Iteration: 240 Train loss: 0.139
Epoch: 6/10 Iteration: 245 Train loss: 0.096
Epoch: 6/10 Iteration: 250 Train loss: 0.111
Val acc: 0.791
Epoch: 6/10 Iteration: 255 Train loss: 0.110
Epoch: 6/10 Iteration: 260 Train loss: 0.104
Epoch: 6/10 Iteration: 265 Train loss: 0.076
Epoch: 6/10 Iteration: 270 Train loss: 0.093
Epoch: 6/10 Iteration: 275 Train loss: 0.109
Val acc: 0.769
Epoch: 6/10 Iteration: 280 Train loss: 0.220
Epoch: 7/10 Iteration: 285 Train loss: 0.105
Epoch: 7/10 Iteration: 290 Train loss: 0.154
Epoch: 7/10 Iteration: 295 Train loss: 0.119
Epoch: 7/10 Iteration: 300 Train loss: 0.113
Val acc: 0.808
Epoch: 7/10 Iteration: 305 Train loss: 0.083
Epoch: 7/10 Iteration: 310 Train loss: 0.128
Epoch: 7/10 Iteration: 315 Train loss: 0.089
Epoch: 7/10 Iteration: 320 Train loss: 0.100
Epoch: 8/10 Iteration: 325 Train loss: 0.086
Val acc: 0.779
Epoch: 8/10 Iteration: 330 Train loss: 0.129
Epoch: 8/10 Iteration: 335 Train loss: 0.121
Epoch: 8/10 Iteration: 340 Train loss: 0.118
Epoch: 8/10 Iteration: 345 Train loss: 0.079
Epoch: 8/10 Iteration: 350 Train loss: 0.084
Val acc: 0.804
Epoch: 8/10 Iteration: 355 Train loss: 0.087
Epoch: 8/10 Iteration: 360 Train loss: 0.066
Epoch: 9/10 Iteration: 365 Train loss: 0.109
Epoch: 9/10 Iteration: 370 Train loss: 0.125
Epoch: 9/10 Iteration: 375 Train loss: 0.117
Val acc: 0.741
Epoch: 9/10 Iteration: 380 Train loss: 0.100
Epoch: 9/10 Iteration: 385 Train loss: 0.078
Epoch: 9/10 Iteration: 390 Train loss: 0.081
Epoch: 9/10 Iteration: 395 Train loss: 0.067
Epoch: 9/10 Iteration: 400 Train loss: 0.067
Val acc: 0.815

Testing


In [22]:
test_acc = []
with tf.Session(graph=graph) as sess:
    saver.restore(sess, tf.train.latest_checkpoint('checkpoints'))
    test_state = sess.run(cell.zero_state(batch_size, tf.float32))
    for ii, (x, y) in enumerate(get_batches(test_x, test_y, batch_size), 1):
        feed = {inputs_: x,
                labels_: y[:, None],
                keep_prob: 1,
                initial_state: test_state}
        batch_acc, test_state = sess.run([accuracy, final_state], feed_dict=feed)
        test_acc.append(batch_acc)
    print("Test accuracy: {:.3f}".format(np.mean(test_acc)))


INFO:tensorflow:Restoring parameters from checkpoints/sentiment.ckpt
Test accuracy: 0.816