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