Bernoulli¤
distreqx.distributions.Bernoulli(distreqx.distributions.AbstractSampleLogProbDistribution, distreqx.distributions.AbstractSTDDistribution, distreqx.distributions.AbstractSurvivalDistribution)
¤
Bernoulli distribution of shape dims.
Bernoulli distribution with parameter probs, the probability of outcome 1.
__init__(logits: Array | None = None, probs: Array | None = 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.