Last active
May 19, 2016 15:54
-
-
Save jskDr/7c7d1d201793d51190207bc0ee918eef to your computer and use it in GitHub Desktop.
Tensoflow - Very simple example: normal random generation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
init = tf.initialize_all_variables() | |
a = tf.random_normal([2, 2, 2, 2]) | |
with tf.Session() as sess: | |
sess.run(init) | |
x = sess.run(a) | |
x |
The file name is updated from tf.random_normal.py to tf_random_normal.py
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I generated multiple dimensional random numbers using the Tensflow library.