Class GenericRecognizer.GenericRecognizerConfig
A generic recognizer is a user-defined combinations of component algorithms.
Please refer to the DIY Call Recognizer guide.
The basic format of a generic recognizer configuration is a YAML config file
with two sections: Profiles
and PostProcessing
:
Profiles:
PostProcessing:
Inheritance
GenericRecognizer.GenericRecognizerConfig
Inherited Members
Namespace: AnalysisPrograms.Recognizers
Assembly: AnalysisPrograms.dll
Syntax
public class GenericRecognizerConfig : RecognizerBase.RecognizerConfig, IConfig, INamedProfiles<object>
Properties
| Improve this Doc View SourcePostProcessing
Gets or sets the post-processing config. Used to obtain parameters for all post-processing steps.
Declaration
public EventPostProcessing.PostProcessingConfig PostProcessing { get; set; }
Property Value
Type | Description |
---|---|
EventPostProcessing.PostProcessingConfig |
Profiles
Gets a collection of named profiles that allow for variable and configurable algorithms to be used.
Declaration
public Dictionary<string, object> Profiles { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<String, Object> |