Method Bernoulli
Bernoulli(TensorFloat, Tensor, float?)
Generates an output tensor with values 0 or 1 from a Bernoulli distribution. The input tensor contains the probabilities to use for generating the output values.
Declaration
void Bernoulli(TensorFloat X, Tensor O, float? seed)
Parameters
| Type | Name | Description |
|---|---|---|
| TensorFloat | X | The probabilities input tensor. |
| Tensor | O | The output tensor to be computed and filled. |
| float? | seed | The optional seed to use for the random number generation. If this is |