Browse Source

all: address linter errors

jmorganca 1 tháng trước cách đây
mục cha
commit
83f0ec8269
2 tập tin đã thay đổi với 3 bổ sung4 xóa
  1. 0 1
      convert/convert.go
  2. 3 3
      model/models/gemma3/model_vision.go

+ 0 - 1
convert/convert.go

@@ -228,7 +228,6 @@ func ConvertModel(fsys fs.FS, ws io.WriteSeeker) error {
 	switch {
 	case vocabSize == 0:
 		slog.Warn("vocabulary size was not explicitly set by the model", "default size", len(t.Vocabulary.Tokens))
-		vocabSize = len(t.Vocabulary.Tokens)
 	case vocabSize > len(t.Vocabulary.Tokens):
 		slog.Warn("vocabulary is smaller than expected, padding with dummy tokens", "expect", vocabSize, "actual", len(t.Vocabulary.Tokens))
 		for i := range vocabSize - len(t.Vocabulary.Tokens) {

+ 3 - 3
model/models/gemma3/model_vision.go

@@ -69,9 +69,9 @@ func (e *VisionEncoderLayer) Forward(ctx ml.Context, hiddenState ml.Tensor, opts
 }
 
 type VisionModelOptions struct {
-	hiddenSize, numHeads, numTiles int
-	imageSize, patchSize           int
-	eps                            float32
+	hiddenSize, numHeads int
+	imageSize, patchSize int
+	eps                  float32
 }
 
 type VisionModel struct {