close
Tensorflow 呼叫 normal distribution 的時候,需要吃三個參數,分別為1: 維度, 2: 平均數, 3: 標準差
範例程式如下:
This file contains 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
import tensorflow as tf | |
import matplotlib.pyplot as plt | |
normal = tf.random_normal([100],mean=0,stddev=2) | |
with tf.Session() as session: | |
plt.hist(normal.eval(), normed = True) | |
plt.show() |
其結果如下:
全站熱搜