Type Chi2
Namespace tensorflow.contrib.distributions
Parent Gamma
Interfaces IChi2
Chi2 distribution. The Chi2 distribution is defined over positive real numbers using a degrees of
freedom ("df") parameter. #### Mathematical Details The probability density function (pdf) is, ```none
pdf(x; df, x > 0) = x**(0.5 df - 1) exp(-0.5 x) / Z
Z = 2**(0.5 df) Gamma(0.5 df)
``` where: * `df` denotes the degrees of freedom,
* `Z` is the normalization constant, and,
* `Gamma` is the [gamma function](
https://en.wikipedia.org/wiki/Gamma_function). The Chi2 distribution is a special case of the Gamma distribution, i.e.,
Show Example
Chi2(df) = Gamma(concentration=0.5 * df, rate=0.5)
Properties
- allow_nan_stats
- allow_nan_stats_dyn
- batch_shape
- batch_shape_dyn
- concentration
- concentration_dyn
- df
- df_dyn
- dtype
- dtype_dyn
- event_shape
- event_shape_dyn
- name
- name_dyn
- parameters
- parameters_dyn
- PythonObject
- rate
- rate_dyn
- reparameterization_type
- reparameterization_type_dyn
- validate_args
- validate_args_dyn