mirror of
https://github.com/mudler/LocalAI.git
synced 2025-02-06 11:10:31 +00:00
fix(rwkv): load tokenizer file from model path (#255)
This commit is contained in:
parent
850a690290
commit
2a9d7474ce
@ -2,6 +2,7 @@ package model
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
rwkv "github.com/donomii/go-rwkv.cpp"
|
rwkv "github.com/donomii/go-rwkv.cpp"
|
||||||
@ -143,7 +144,7 @@ func (ml *ModelLoader) BackendLoader(backendString string, modelFile string, lla
|
|||||||
case BertEmbeddingsBackend:
|
case BertEmbeddingsBackend:
|
||||||
return ml.LoadModel(modelFile, bertEmbeddings)
|
return ml.LoadModel(modelFile, bertEmbeddings)
|
||||||
case RwkvBackend:
|
case RwkvBackend:
|
||||||
return ml.LoadModel(modelFile, rwkvLM(modelFile+tokenizerSuffix, threads))
|
return ml.LoadModel(modelFile, rwkvLM(filepath.Join(ml.ModelPath, modelFile+tokenizerSuffix), threads))
|
||||||
case WhisperBackend:
|
case WhisperBackend:
|
||||||
return ml.LoadModel(modelFile, whisperModel)
|
return ml.LoadModel(modelFile, whisperModel)
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user