1using System.Runtime.Serialization;
11 [DataMember(Order = 20)]
12 [GreaterThan(0, canEqual:
true)]
13 public int n {
get;
set; }
17 [DataMember(Order = 21)]
18 [GreaterThan(0, canEqual: true)]
19 [LessThan(1, canEqual: true)]
20 public double
p { get;
set; }
Abstract representation of a distribution, used for parametric loss sets.
Describes a Binomial Discrete Distribution.
double p
In a Binomial distribution, p is a real number between zero and one (inclusive) that represents the p...
int n
In a Binomial distribution, n an integer greater than or equal to zero representing the total number ...
Represents any distribution that is discrete. With a discrete probability distribution,...