Guest User

Untitled

a guest
Dec 18th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. batch_size = 16
  2.  
  3. x_batch, y_true_batch, _, cls_batch = data.train.next_batch(batch_size)
  4.  
  5. feed_dict_train = {x: x_batch,
  6. y_true: y_true_batch}
  7.  
  8. session.run(optimizer, feed_dict=feed_dict_tr)
Add Comment
Please, Sign In to add comment