Package com.bayesserver
Class NodeDistributionOptions
- java.lang.Object
-
- com.bayesserver.NodeDistributionOptions
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NodeDistributionOptionscopy()Copies this instance.booleangetHasZeroIntercepts()Determines whetherCLGaussianintercept terms are fixed to zero.NodegetNode()The node this instance belongs to.NoisyTypegetNoisyType()Gets a value which identifies this node as a noisy node or not.voidsetHasZeroIntercepts(boolean value)Determines whetherCLGaussianintercept terms are fixed to zero.voidsetNoisyType(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 whetherCLGaussianintercept terms are fixed to zero. This only applies toCLGaussiandistributions with tails.When
true, the parameter count of the network reduces accordingly.
-
setHasZeroIntercepts
public void setHasZeroIntercepts(boolean value)
Determines whetherCLGaussianintercept terms are fixed to zero. This only applies toCLGaussiandistributions with tails.When
true, the parameter count of the network reduces accordingly.
-
-