Merge pull request #23 from bmaltais/dev

Quick fix for bug when no LoRA network weights is provided
This commit is contained in:
bmaltais 2023-01-01 14:38:07 -05:00 committed by GitHub
commit 1a9554a800
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -434,7 +434,8 @@ def train_model(
# elif network_train == 'Unet only':
# run_cmd += f' --network_train_unet_only'
run_cmd += f' --network_dim={network_dim}'
run_cmd += f' --network_weights={lora_network_weights}'
if not lora_network_weights == '':
run_cmd += f' --network_weights={lora_network_weights}'
print(run_cmd)