mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-04 12:00:10 +00:00
model creation is failing... debugging
This commit is contained in:
parent
9f203c211f
commit
5490af5a2c
@ -148,7 +148,11 @@ class LLModel:
|
|||||||
model_path_enc = model_path.encode("utf-8")
|
model_path_enc = model_path.encode("utf-8")
|
||||||
build_var = "auto".encode("utf-8")
|
build_var = "auto".encode("utf-8")
|
||||||
self.model = llmodel.llmodel_model_create2(model_path_enc, build_var, None)
|
self.model = llmodel.llmodel_model_create2(model_path_enc, build_var, None)
|
||||||
|
|
||||||
|
if self.model is not None:
|
||||||
llmodel.llmodel_loadModel(self.model, model_path_enc)
|
llmodel.llmodel_loadModel(self.model, model_path_enc)
|
||||||
|
else:
|
||||||
|
raise ValueError("Unable to instantiate model")
|
||||||
filename = os.path.basename(model_path)
|
filename = os.path.basename(model_path)
|
||||||
self.model_name = os.path.splitext(filename)[0]
|
self.model_name = os.path.splitext(filename)[0]
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user