Update model_args.py

Former-commit-id: f40a2fe5334865763e4d513292d359317b7a091b
This commit is contained in:
hoshi-hiyouga 2024-05-17 16:16:41 +08:00 committed by GitHub
parent 6373d307ec
commit 0fd1a05cec

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."},