Uses of Class
de.jstacs.scoringFunctions.directedGraphicalModels.ParameterTree

Packages that use ParameterTree
de.jstacs.scoringFunctions.directedGraphicalModels Provides ScoringFunctions that are equivalent to directed graphical models. 
 

Uses of ParameterTree in de.jstacs.scoringFunctions.directedGraphicalModels
 

Fields in de.jstacs.scoringFunctions.directedGraphicalModels declared as ParameterTree
protected  ParameterTree[] BayesianNetworkScoringFunction.trees
          The trees that represent the context of the random variable (i.e.
 

Methods in de.jstacs.scoringFunctions.directedGraphicalModels that return ParameterTree
 ParameterTree ParameterTree.clone()
           
static ParameterTree[] ParameterTree.fromStringArray(String[] strs, AlphabetContainer alphabet)
          Recreates an array of ParameterTrees from their XML representation as given in strs.
 

Methods in de.jstacs.scoringFunctions.directedGraphicalModels with parameters of type ParameterTree
 void ParameterTree.backward(ParameterTree[] trees, int[][] order)
          Computes the backward-part of the normalization constant starting from this ParameterTree.
 void ParameterTree.copy(ParameterTree parameterTree)
          Copies the values of the parameters from another ParameterTree.
 double ParameterTree.forward(ParameterTree[] trees)
          Computes the forward-part of the normalization constant starting from this ParameterTree.
static String[] ParameterTree.toStringArray(ParameterTree[] trees)
          Creates a String array from the XML representation of all ParameterTrees in trees as returned by the corresponding toXML() methods.