用法
binomial(
shape, counts, probs, dtype=tf.dtypes.int32, name=None
)
參數
-
shape
一維整數張量或 Python 數組。輸出張量的形狀。 -
counts
張量。二項分布的計數。必須可以使用probs
進行廣播,並且可以使用shape
的最右側維度進行廣播。 -
probs
張量。二項分布的成功概率。必須可以使用counts
進行廣播,並且可以使用shape
的最右側維度進行廣播。 -
dtype
輸出的類型。默認值:tf.int32 -
name
操作的名稱(可選)。
返回
-
samples
用隨機二項式值填充的指定形狀的張量。對於每個 i,每個 samples[i, ...] 都是從 counts[i] 試驗的二項式分布中獨立抽取的,具有成功概率 probs[i]。
從二項分布中輸出隨機值。
生成的值遵循具有指定計數和成功概率參數的二項分布。
例子:
counts = [10., 20.]
# Probability of success.
probs = [0.8]
rng = tf.random.Generator.from_seed(seed=234)
binomial_samples = rng.binomial(shape=[2], counts=counts, probs=probs)
counts = ... # Shape [3, 1, 2]
probs = ... # Shape [1, 4, 2]
shape = [3, 4, 3, 4, 2]
rng = tf.random.Generator.from_seed(seed=1717)
# Sample shape will be [3, 4, 3, 4, 2]
binomial_samples = rng.binomial(shape=shape, counts=counts, probs=probs)
相關用法
- Python tf.random.Generator.make_seeds用法及代碼示例
- Python tf.random.Generator.split用法及代碼示例
- Python tf.random.Generator用法及代碼示例
- Python tf.random.truncated_normal用法及代碼示例
- Python tf.random.stateless_uniform用法及代碼示例
- Python tf.random.shuffle用法及代碼示例
- Python tf.random.stateless_parameterized_truncated_normal用法及代碼示例
- Python tf.random.normal用法及代碼示例
- Python tf.random.experimental.stateless_split用法及代碼示例
- Python tf.random.stateless_poisson用法及代碼示例
- Python tf.random.set_global_generator用法及代碼示例
- Python tf.random.uniform用法及代碼示例
- Python tf.random.categorical用法及代碼示例
- Python tf.random.stateless_binomial用法及代碼示例
- Python tf.random.experimental.stateless_fold_in用法及代碼示例
- Python tf.random.stateless_categorical用法及代碼示例
- Python tf.random.set_seed用法及代碼示例
- Python tf.random.poisson用法及代碼示例
- Python tf.random.gamma用法及代碼示例
- Python tf.random.create_rng_state用法及代碼示例
注:本文由純淨天空篩選整理自tensorflow.org大神的英文原創作品 tf.random.Generator.binomial。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。