Update model_args.py

Former-commit-id: 964672745389e35580a7010b0f010bd5ee08d542
This commit is contained in:
hoshi-hiyouga 2024-05-17 16:16:41 +08:00 committed by GitHub
parent 20326affde
commit e4a2accf4a

View File

@ -117,7 +117,10 @@ class ModelArguments:
default=False,
metadata={"help": "Whether or not to disable CUDA graph in the vLLM engine."},
)
vllm_max_lora_rank: int = field(default=8, metadata={"help": "The maximum supported rank of all LoRAs."})
vllm_max_lora_rank: int = field(
default=8,
metadata={"help": "Maximum rank of all LoRAs in the vLLM engine."},
)
offload_folder: str = field(
default="offload",
metadata={"help": "Path to offload model weights."},