mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-10-16 00:28:10 +08:00
fix Llama lora merge crash
Former-commit-id: c29a2893f58cf7a916ff05b2725fadf1ad2c4c9a
This commit is contained in:
parent
92248f9cb2
commit
edeed55664
@ -64,6 +64,15 @@ def export_model(args: Optional[Dict[str, Any]] = None):
|
|||||||
for param in model.parameters():
|
for param in model.parameters():
|
||||||
param.data = param.data.to(output_dtype)
|
param.data = param.data.to(output_dtype)
|
||||||
|
|
||||||
|
# Configuration check and fix
|
||||||
|
config = model.generation_config
|
||||||
|
if config.do_sample and (
|
||||||
|
(config.temperature is not None and config.temperature != 1.0) or
|
||||||
|
(config.top_p is not None and config.top_p != 1.0) or
|
||||||
|
(config.typical_p is not None and config.typical_p != 1.0)
|
||||||
|
):
|
||||||
|
config.do_sample = False
|
||||||
|
|
||||||
model.save_pretrained(
|
model.save_pretrained(
|
||||||
save_directory=model_args.export_dir,
|
save_directory=model_args.export_dir,
|
||||||
max_shard_size="{}GB".format(model_args.export_size),
|
max_shard_size="{}GB".format(model_args.export_size),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user