Table of Contents

Property UseEmbeddingClassifier

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

UseEmbeddingClassifier

Gets or sets a value indicating whether the classifier should utilize an embedding-based classification strategy. When set to true, the engine is forced to classify using embeddings instead of a completion-based approach.

public bool UseEmbeddingClassifier { get; set; }

Property Value

bool

true if the underlying model supports embeddings or embedding classification is forced; otherwise, false.

Examples

using LMKit.Model;
using LMKit.TextAnalysis;
using System;
using System.Collections.Generic;

class Example
{
    static void Main()
    {
        LM model = LM.LoadFromModelID("llama-3.1");

        Categorization categorization = new Categorization(model);

        // Enable embedding-based classification
        categorization.UseEmbeddingClassifier = true;

        // Define categories
        var categories = new List<string> { "food", "technology", "sports" };
        string text = "The new AI research is quite revolutionary.";

        // Perform classification
        int index = categorization.GetBestCategory(categories, text);

        if (index != -1)
        {
            Console.WriteLine($"Best Category: {categories[index]}");
        }
        else
        {
            Console.WriteLine("No suitable category found.");
        }

        Console.WriteLine($"Confidence: {categorization.Confidence}");
    }
}

Remarks

In the current implementation, the setter always forces the engine into embedding classification mode. Disabling this mode by setting it to false is not supported.