Browse Source

chore: set the fallback model ratio to 30

JustSong 2 years ago
parent
commit
24a4b323eb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      common/model-ratio.go

+ 1 - 1
common/model-ratio.go

@@ -54,7 +54,7 @@ func GetModelRatio(name string) float64 {
 	ratio, ok := ModelRatio[name]
 	if !ok {
 		SysError("Model ratio not found: " + name)
-		return 1
+		return 30
 	}
 	return ratio
 }