Table of Contents

Enum ClassificationType

Namespace
LMKit.Agents.Templates
Assembly
LM-Kit.NET.dll

Types of classification.

public enum ClassificationType

Fields

SingleLabel = 0

Assign exactly one category.

MultiLabel = 1

Assign multiple applicable categories.

Hierarchical = 2

Hierarchical category and subcategory.

Binary = 3

Binary yes/no classification.

Sentiment = 4

Sentiment analysis.

Intent = 5

Intent detection.

Examples

Selecting a multi-label classifier (e.g., topic tagging):

using LMKit.Agents.Templates;

var classifier = new ClassifierAgentTemplate { Type = ClassificationType.MultiLabel };

Share