Constructor LogitBias
- Namespace
- LMKit.TextGeneration.Sampling
- Assembly
- LM-Kit.NET.dll
LogitBias(LM)
Initializes a new instance of the LogitBias class using the specified language model.
public LogitBias(LM model)
Parameters
model
LMThe LM (Language Model) instance used to retrieve tokens from text chunks and to adjust their logit values during sampling. All bias operations in this LogitBias instance depend on the underlying vocabulary and tokenization strategy defined by the provided model.
Remarks
Passing a valid LM to this constructor is essential for all subsequent bias operations, such as AddTextChunkBias(string, float, LogitBiasSetMode, bool, bool) or DisallowTextChunk(string, bool, bool). The model provides the vocabulary and token indices needed to accurately apply logit biases.