From b01b163a379a4e057332f71ab55a5549dee5ef0a Mon Sep 17 00:00:00 2001 From: Michael Yang Date: Thu, 3 Apr 2025 10:00:20 -0700 Subject: [PATCH] fix lint --- model/models/mistral3/model_text.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/model/models/mistral3/model_text.go b/model/models/mistral3/model_text.go index f8de30c73..0b068b94e 100644 --- a/model/models/mistral3/model_text.go +++ b/model/models/mistral3/model_text.go @@ -31,10 +31,10 @@ type TextModel struct { } type SelfAttention struct { - Query *nn.Linear `gguf:"attn_q"` - Key *nn.Linear `gguf:"attn_k"` - Value *nn.Linear `gguf:"attn_v"` - Output *nn.Linear `gguf:"attn_output"` + Query *nn.Linear `gguf:"attn_q"` + Key *nn.Linear `gguf:"attn_k"` + Value *nn.Linear `gguf:"attn_v"` + Output *nn.Linear `gguf:"attn_output"` } func (sa *SelfAttention) Forward(ctx ml.Context, hiddenState, positionIDs ml.Tensor, cache kvcache.Cache, opts *TextOptions) ml.Tensor {