1000 -> 10,000 for ropeFreqBase?

the error message talks about a default of 10k, so setting this to 10k instead of 1k experimentally.
This commit is contained in:
Dave
2023-07-29 02:37:24 -04:00
committed by GitHub
parent f085baa77d
commit 8b90ac2b1a

View File

@@ -58,7 +58,7 @@ func (llm *LLM) Load(opts *pb.ModelOptions) error {
}
func buildPredictOptions(opts *pb.PredictOptions) []llama.PredictOption {
ropeFreqBase := float32(1000)
ropeFreqBase := float32(10000)
ropeFreqScale := float32(1)
if opts.RopeFreqBase != 0 {