Table of Contents

Constructor Categorization

Namespace
LMKit.TextAnalysis
Assembly
LM-Kit.NET.dll

Categorization(LM)

Initializes a new instance of the Categorization class using the specified language model. This categorization engine supports both plain text and image attachments.

public Categorization(LM model)

Parameters

model LM

An LM object representing the language model to be used for content categorization.

Examples

using LMKit.Model;
using LMKit.TextAnalysis;
using System;

class Example
{
    static void Main()
    {
        LM model = LM.LoadFromModelID("llama-3.1");
        Categorization categorization = new Categorization(model);
        Console.WriteLine("Categorization instance created successfully.");
    }
}

Remarks

The underlying categorization engine is initialized with a forced category name sampling strategy.

Exceptions

ArgumentNullException

Thrown when the provided model is null.