Uses of Class
de.jstacs.models.discrete.inhomogeneous.StructureLearner.LearningType

Packages that use StructureLearner.LearningType
de.jstacs.models.discrete.inhomogeneous This package contains various inhomogeneous models. 
de.jstacs.models.discrete.inhomogeneous.parameters   
de.jstacs.models.discrete.inhomogeneous.shared   
 

Uses of StructureLearner.LearningType in de.jstacs.models.discrete.inhomogeneous
 

Methods in de.jstacs.models.discrete.inhomogeneous that return StructureLearner.LearningType
static StructureLearner.LearningType StructureLearner.LearningType.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StructureLearner.LearningType[] StructureLearner.LearningType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in de.jstacs.models.discrete.inhomogeneous with parameters of type StructureLearner.LearningType
 int[][] StructureLearner.getStructure(Sample data, double[] weights, StructureLearner.ModelType model, byte order, StructureLearner.LearningType method)
          This method finds the optimal structure of a model by using a given learning method (in some sense).
 SymmetricTensor StructureLearner.getTensor(Sample data, double[] weights, byte order, StructureLearner.LearningType method)
          This method can be used to compute a Tensor that can be used to determine the optimal structure.
 

Uses of StructureLearner.LearningType in de.jstacs.models.discrete.inhomogeneous.parameters
 

Methods in de.jstacs.models.discrete.inhomogeneous.parameters with parameters of type StructureLearner.LearningType
static String IDGMParameterSet.getModelInstanceName(StructureLearner.ModelType model, byte order, StructureLearner.LearningType method, double ess)
          This method returns a short textual representation of the model instance.
 

Constructors in de.jstacs.models.discrete.inhomogeneous.parameters with parameters of type StructureLearner.LearningType
BayesianNetworkModelParameterSet(AlphabetContainer alphabet, int length, double ess, String description, StructureLearner.ModelType model, byte order, StructureLearner.LearningType method)
          This is the constructor of a filled BayesianNetworkModelParameterSet for a BayesianNetworkModel.
 

Uses of StructureLearner.LearningType in de.jstacs.models.discrete.inhomogeneous.shared
 

Constructors in de.jstacs.models.discrete.inhomogeneous.shared with parameters of type StructureLearner.LearningType
SharedStructureClassifier(int length, StructureLearner.ModelType model, byte order, StructureLearner.LearningType method, FSDAGModel... models)
          Creates a new SharedStructureClassifier from given FSDAGModels.