Guest User

Untitled

a guest
May 23rd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. # Input data.
  2. train_inputs, train_outputs = [],[]
  3.  
  4. # You unroll the input over time defining placeholders for each time step
  5. for ui in range(num_unrollings):
  6. train_inputs.append(tf.placeholder(tf.float32, shape=[batch_size,D],name='train_inputs_%d'%ui))
  7. train_outputs.append(tf.placeholder(tf.float32, shape=[batch_size,1], name = 'train_outputs_%d'%ui))
Add Comment
Please, Sign In to add comment