From 8e157cfa1500d34f386d29a63e8d330c5d229a64 Mon Sep 17 00:00:00 2001 From: XDUWQ <1300964705@qq.com> Date: Mon, 24 Jul 2023 22:10:52 +0800 Subject: [PATCH] precommit --- .../stable_diffusion/lora/finetune_stable_diffusion_lora.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/pytorch/stable_diffusion/lora/finetune_stable_diffusion_lora.py b/examples/pytorch/stable_diffusion/lora/finetune_stable_diffusion_lora.py index 325cc7ae..6001af48 100644 --- a/examples/pytorch/stable_diffusion/lora/finetune_stable_diffusion_lora.py +++ b/examples/pytorch/stable_diffusion/lora/finetune_stable_diffusion_lora.py @@ -20,7 +20,8 @@ class StableDiffusionLoraArguments(TrainingArgs): }) lora_rank: int = field( - default=4, metadata={ + default=4, + metadata={ 'help': 'The rank size of lora intermediate linear.', })