Bernoulli¤
distreqx.distributions.bernoulli.Bernoulli (AbstractSampleLogProbDistribution, AbstractSTDDistribution, AbstractSurvivalDistribution)
¤
Bernoulli distribution of shape dims.
Bernoulli distribution with parameter probs, the probability of outcome 1.
__init__(self, logits: Optional[Array] = None, probs: Optional[Array] = None)
¤
Initializes a Bernoulli distribution.
Arguments:
logits: Logit transform of the probability of a1event (0otherwise), i.e.probs = sigmoid(logits). Only one oflogitsorprobscan be specified.probs: Probability of a1event (0otherwise). Only one oflogitsorprobscan be specified.