mxnet.gluon.probability.distributions.fishersnedecor¶
Snedecor’s F Distribution.
Classes
|
Create a FisherSnedecor distribution object, often known as F distribution. |
- class mxnet.gluon.probability.distributions.fishersnedecor.FisherSnedecor(df1, df2, validate_args=None)[source]¶
Bases:
DistributionCreate a FisherSnedecor distribution object, often known as F distribution.
- Parameters:
df1 (Tensor or scalar) – degree of freedom parameter 1
scale (Tensor or scalar) – degree of freedom parameter 2
- broadcast_to(batch_shape)[source]¶
Returns a new distribution instance with parameters expanded to batch_shape. This method calls numpy.broadcast_to on the parameters.
- Parameters:
batch_shape (Tuple) – The batch shape of the desired distribution.
- log_prob(value)[source]¶
Returns the log of the probability density/mass function evaluated at value.
- property mean¶
Returns the mean of the distribution.
- property variance¶
Returns the variance of the distribution.