Skip to content

Commit b774f92

Browse files
committed
progress on mrnn with automated task next word prediction
1 parent 9a986b4 commit b774f92

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/models/mcrnn.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ def buildModel(x, y_context, y_task, is_train, dropout, scope="multiTask"):
5454
# Split to get a list of "n_steps" tensors of shape (batch_size, feature_length)
5555
print x.get_shape()
5656
x = tf.split(x, n_steps, 0)
57+
print x
5758

5859
# Create lstm cell for the shared layer
5960
body_lstm_cell, body_state = createLSTMCell(batch_size, body_lstm_size, body_n_layer, forget_bias=0.0)

0 commit comments

Comments
 (0)