2 instantiations of MistralModel
Microsoft.ML.GenAI.Mistral (1)
MistralForCausalLM.cs (1)
32
model = new
MistralModel
(config);
Microsoft.ML.GenAI.Samples (1)
Mistral\Mistral_7B_Instruct.cs (1)
77
var model = new
MistralModel
(mistralConfig);
4 references to MistralModel
Microsoft.ML.GenAI.Mistral (2)
MistralForCausalLM.cs (1)
23
private readonly
MistralModel
model;
MistralModel.cs (1)
27
: base(nameof(
MistralModel
))
Microsoft.ML.GenAI.Samples (2)
Mistral\Mistral_7B_Instruct.cs (2)
77
var
model = new MistralModel(mistralConfig);
81
var pipeline = new CausalLMPipeline<LlamaTokenizer,
MistralModel
>(tokenizer, model, device);