Guest User

Untitled

a guest
Feb 21st, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. tf.nn.softmax_cross_entropy_with_logits(y, y_)
  2.  
  3. y= tf.nn.softmax(tf.matmul(x, W) + b)
  4.  
  5. y_ = tf.placeholder(tf.float32, [None, 10])
Add Comment
Please, Sign In to add comment