Table of Contents

Property Model

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

Model

Gets the underlying language model instance associated with this categorization object.

public LM Model { get; }

Property Value

LM

An LM object representing the language model used for text analysis.

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);

        // Retrieving the underlying LM model
        LM usedModel = categorization.Model;
        Console.WriteLine($"Model name: {usedModel.Name}");
    }
}