tf.contrib.distributions.Poisson.__init__(lam, validate_args=False, allow_nan_stats=True, name='Poisson')
Construct Poisson distributions.
Args:
-
lam: Floating point tensor, the rate parameter of the distribution(s).lammust be positive. -
validate_args:Boolean, defaultFalse. Whether to assert thatlam > 0as well as inputs to pmf computations are non-negative integers. If validate_args isFalse, thenpmfcomputations might returnNaN, but can be evaluated at any real value. -
allow_nan_stats:Boolean, defaultTrue. IfFalse, raise an exception if a statistic (e.g. mean/mode/etc...) is undefined for any batch member. IfTrue, batch members with valid parameters leading to undefined statistics will return NaN for this statistic. -
name: A name for this distribution.
Please login to continue.