mirror of
https://github.com/RYDE-WORK/Langchain-Chatchat.git
synced 2026-02-06 06:49:48 +08:00
Update loader.py
删除低显存加载参数
This commit is contained in:
parent
52cf43a479
commit
6f8da56083
@ -113,7 +113,6 @@ class LoaderCheckPoint:
|
|||||||
if num_gpus < 2 and self.device_map is None:
|
if num_gpus < 2 and self.device_map is None:
|
||||||
model = (
|
model = (
|
||||||
LoaderClass.from_pretrained(checkpoint,
|
LoaderClass.from_pretrained(checkpoint,
|
||||||
low_cpu_mem_usage=True,
|
|
||||||
config=self.model_config,
|
config=self.model_config,
|
||||||
torch_dtype=torch.bfloat16 if self.bf16 else torch.float16,
|
torch_dtype=torch.bfloat16 if self.bf16 else torch.float16,
|
||||||
trust_remote_code=True)
|
trust_remote_code=True)
|
||||||
@ -124,7 +123,6 @@ class LoaderCheckPoint:
|
|||||||
from accelerate import dispatch_model
|
from accelerate import dispatch_model
|
||||||
|
|
||||||
model = LoaderClass.from_pretrained(checkpoint,
|
model = LoaderClass.from_pretrained(checkpoint,
|
||||||
low_cpu_mem_usage=True,
|
|
||||||
config=self.model_config,
|
config=self.model_config,
|
||||||
torch_dtype=torch.bfloat16 if self.bf16 else torch.float16,
|
torch_dtype=torch.bfloat16 if self.bf16 else torch.float16,
|
||||||
trust_remote_code=True).half()
|
trust_remote_code=True).half()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user