Table of Contents

Constructor LoraFinetuning

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

LoraFinetuning(LM)

Initializes a new fine-tuning engine over an already-loaded model.

public LoraFinetuning(LM model)

Parameters

model LM

The base model to fine-tune.

Exceptions

ArgumentNullException

model is null.

InvalidModelException

The model cannot be fine-tuned.

LoraFinetuning(string)

Initializes a new fine-tuning engine, loading the base model from a file path.

public LoraFinetuning(string modelPath)

Parameters

modelPath string

Path to the base model GGUF file.

Share