Enum ClassificationType
Types of classification.
public enum ClassificationType
Fields
SingleLabel = 0Assign exactly one category.
MultiLabel = 1Assign multiple applicable categories.
Hierarchical = 2Hierarchical category and subcategory.
Binary = 3Binary yes/no classification.
Sentiment = 4Sentiment analysis.
Intent = 5Intent detection.
Examples
Selecting a multi-label classifier (e.g., topic tagging):
using LMKit.Agents.Templates;
var classifier = new ClassifierAgentTemplate { Type = ClassificationType.MultiLabel };