Constructor TextTranslation
- Namespace
- LMKit.Translation
- Assembly
- LM-Kit.NET.dll
TextTranslation(LM)
Initializes a new instance of the TextTranslation class with the specified language model.
public TextTranslation(LM model)
Parameters
model
LMThe LM instance representing the language model to be used for translation and detection. This parameter must not be
null
.
Examples
// Initialize the language model.
LM languageModel = new LM("path/to/your/model");
// Create an instance of TextTranslation.
TextTranslation translator = new TextTranslation(languageModel);
Exceptions
- ArgumentNullException
Thrown if
model
isnull
.- InvalidModelException
Thrown if the provided model is incompatible with text translation (e.g., if it is an embedding model or was loaded without weights).