Update exllama.py - Respect model dir parameter (#2744)

This commit is contained in:
Forkoz 2023-06-18 16:26:30 +00:00 committed by GitHub
parent 5b4c0155f6
commit 3cae1221d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@ class ExllamaModel:
@classmethod @classmethod
def from_pretrained(self, path_to_model): def from_pretrained(self, path_to_model):
path_to_model = Path("models") / Path(path_to_model) path_to_model = Path(f'{shared.args.model_dir}') / Path(path_to_model)
tokenizer_model_path = path_to_model / "tokenizer.model" tokenizer_model_path = path_to_model / "tokenizer.model"
model_config_path = path_to_model / "config.json" model_config_path = path_to_model / "config.json"