| 
            
              ConditionalRandomFieldTDecide Method (T, Int32)
             | 
          
        
         
            Computes class-label decisions for the given input.
            
 
    Namespace: 
   Accord.Statistics.Models.Fields
    Assembly:
   Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntaxpublic override int[][] Decide(
	T[][] input,
	int[][] result
)
Public Overrides Function Decide ( 
	input As T()(),
	result As Integer()()
) As Integer()()
 Request Example
		View SourceParameters
- input
 - Type: T
The input vectors that should be classified as
            any of the NumberOfOutputs possible classes. - result
 - Type: SystemInt32
The location where to store the class-labels. 
Return Value
Type: 
Int32
            A set of class-labels that best describe the 
input
            vectors according to this classifier.
            
Implements
IClassifierTInput, TClassesDecide(TInput, TClasses)
See Also