We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47fde62 commit b062db0Copy full SHA for b062db0
1 file changed
anima_train_network.py
@@ -603,4 +603,10 @@ def setup_parser() -> argparse.ArgumentParser:
603
args = train_util.read_config_from_file(args, parser)
604
605
trainer = AnimaNetworkTrainer()
606
+
607
+ # Automatically switch to Anima-specific LoRA module if generic one is provided
608
+ if args.network_module == "networks.lora":
609
+ print("Override network module: networks.lora -> networks.lora_anima")
610
+ args.network_module = "networks.lora_anima"
611
612
trainer.train(args)
0 commit comments