Guest User

Untitled

a guest
Nov 18th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import tensorflow as tf
  2. import matplotlib.pyplot as plt
  3. normal = tf.random_normal([100],mean=0,stddev=2)
  4. with tf.Session() as session:
  5. plt.hist(normal.eval(), normed = True)
  6. plt.show()
Add Comment
Please, Sign In to add comment