Package com.bayesserver
Class NodeDistributionOptions
- java.lang.Object
-
- com.bayesserver.NodeDistributionOptions
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NodeDistributionOptions
copy()
Copies this instance.boolean
getHasZeroIntercepts()
Determines whetherCLGaussian
intercept terms are fixed to zero.Node
getNode()
The node this instance belongs to.NoisyType
getNoisyType()
Gets a value which identifies this node as a noisy node or not.void
setHasZeroIntercepts(boolean value)
Determines whetherCLGaussian
intercept terms are fixed to zero.void
setNoisyType(NoisyType value)
Sets a value which identifies this node as a noisy node or not.
-
-
-
Method Detail
-
getNode
public Node getNode()
The node this instance belongs to.
-
copy
public NodeDistributionOptions copy()
Copies this instance.- Returns:
- The copy.
-
getNoisyType
public NoisyType getNoisyType()
Gets a value which identifies this node as a noisy node or not.
-
setNoisyType
public void setNoisyType(NoisyType value)
Sets a value which identifies this node as a noisy node or not.
-
getHasZeroIntercepts
public boolean getHasZeroIntercepts()
Determines whetherCLGaussian
intercept terms are fixed to zero. This only applies toCLGaussian
distributions with tails.When
true
, the parameter count of the network reduces accordingly.
-
setHasZeroIntercepts
public void setHasZeroIntercepts(boolean value)
Determines whetherCLGaussian
intercept terms are fixed to zero. This only applies toCLGaussian
distributions with tails.When
true
, the parameter count of the network reduces accordingly.
-
-