Guest User

Untitled

a guest
Jun 14th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. model.add_fc_layer(size=900, use_relu=True)
  2.  
  3. # Calculate the layer as the matrix multiplication of
  4. # the input and weights, and then add the bias-values.
  5. layer = tf.matmul(input, weights) + biases
Add Comment
Please, Sign In to add comment