Credal Model¶
Credal Set Specification¶
For the definition of a credal set, the domains should be first specified.
Discrete variable domains in Crema are managed with objects of class Strides
.
Then, for the definition of a credal set defined by its vertices, create an object
of class VertexFactor
as shown below.
// Define the domains
Strides strides_left = DomainBuilder.var(0).size(3).strides();
Strides strides_right = Strides.empty();
double p = 0.2;
// define a marginal vertex factor
VertexFactor f0 = VertexFactorFactory.factory().domain(strides_left, strides_right)
.addVertex(new double[]{p, 0, 1 - p})
.addVertex(new double[]{0, p, 1 - p})
.get();
Similarly, a conditional credal set can be define as shown in the following code.
// define a conditional vertex factor
strides_left = DomainBuilder.var(1).size(2).strides();
strides_right = DomainBuilder.var(0).size(3).strides();
VertexFactor f1 = VertexFactorFactory.factory().domain(strides_left, strides_right) // K(vars[1]|[0])
// when adding the extreme points, value of the conditioning variables should be specified
.addVertex(new double[]{0.4, 0.6}, 0)
.addVertex(new double[]{0.2, 0.8}, 0)
.addVertex(new double[]{0.3, 0.7}, 1)
.addVertex(new double[]{0.4, 0.6}, 1)
.addVertex(new double[]{0.3, 0.7}, 2)
.addVertex(new double[]{0.4, 0.6}, 2)
.get();
Crema also allows the specification of credal sets by defining
its constraints. This is done with the class SeparateHalfspaceFactor
.
SeparateHalfspaceFactor f0_constr = SeparateHalfspaceFactorFactory.factory().domain(strides_left, Strides.empty())
// add constraints
.constraint(new double[]{1., 1., 0.,}, Relationship.EQ, p)
.constraint(new double[]{0., 0., 1.,}, Relationship.EQ, 1 - p)
// normalization constraint
.constraint(new double[]{1., 1., 1.,}, Relationship.EQ, 1)
// positive constraints
.constraint(new double[]{1., 0., 0.,}, Relationship.GEQ, 0)
.constraint(new double[]{0., 1., 0.,}, Relationship.GEQ, 0)
.constraint(new double[]{0., 0., 1.,}, Relationship.GEQ, 0)
.get();
Credal Network Specification¶
For defining a credal network, create an object of class SparseModel
, specify
the structure of the graph and associate the factors.
// Define the structure
DAGModel<VertexFactor> cnet = new DAGModel<>();
int X0 = cnet.addVariable(3);
int X1 = cnet.addVariable(2);
cnet.addParent(X1, X0);
// Set the factors
cnet.setFactor(X0, f0);
cnet.setFactor(X1, f1);