Table of Contents

Property Model

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

Model

Gets the Model instance associated with this object.

public LM Model { get; }

Property Value

LM

Examples

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

class Example
{
    static void Main()
    {
        Uri modelUri = new Uri("https://your-model-link-here");
        LM model = new LM(modelUri);

        Categorization categorization = new Categorization(model);

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