mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
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:
parent
f085baa77d
commit
8b90ac2b1a
@ -58,7 +58,7 @@ func (llm *LLM) Load(opts *pb.ModelOptions) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func buildPredictOptions(opts *pb.PredictOptions) []llama.PredictOption {
|
func buildPredictOptions(opts *pb.PredictOptions) []llama.PredictOption {
|
||||||
ropeFreqBase := float32(1000)
|
ropeFreqBase := float32(10000)
|
||||||
ropeFreqScale := float32(1)
|
ropeFreqScale := float32(1)
|
||||||
|
|
||||||
if opts.RopeFreqBase != 0 {
|
if opts.RopeFreqBase != 0 {
|
||||||
|
Loading…
Reference in New Issue
Block a user