mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 01:04:32 +02:00
Merge pull request #4560 from CalamitousFelicitousness/docs/lora-settings-hints
docs(i18n): improve LoRA settings hints and labels
This commit is contained in:
+6
-3
@@ -97,8 +97,11 @@
|
||||
{"id":"","label":"Build info on first access","localized":"","reload":"","hint":"Prevents server from building EN page on server startup and instead build it when requested"},
|
||||
{"id":"","label":"Show reference styles","localized":"","reload":"","hint":"Show or hide build-it styles"},
|
||||
{"id":"","label":"LoRA load using Diffusers method","localized":"","reload":"","hint":"Alternative method uses diffusers built-in LoRA capabilities instead of native SD.Next implementation (may reduce LoRA compatibility)"},
|
||||
{"id":"","label":"LoRA fuse directly to model","localized":"","reload":"","hint":"When loading LoRAs, immediately merge weights with underlying model instead of applying them on-the-fly"},
|
||||
{"id":"","label":"LoRA native fuse with model","localized":"","reload":"","hint":"Merge LoRA into the model for lower memory usage.<br><br><b style=\"color: #ef4444\">Warning:</b> After removing or switching a LoRA, you may still see its style in generated images. To get a clean model, reload it from the model selector."},
|
||||
{"id":"","label":"LoRA memory cache","localized":"","reload":"","hint":"How many LoRAs to keep in network for future use before requiring reloading from storage"},
|
||||
{"id":"","label":"LoRA force reload always","localized":"","reload":"","hint":"Forces LoRA networks to reload from storage on every generation, even if already cached.<br>Useful for debugging or when LoRA files are being modified externally.<br>Disable for normal use to benefit from caching."},
|
||||
{"id":"","label":"LoRA diffusers fuse with model","localized":"","reload":"","hint":"Merge LoRA into the model for lower memory usage and torch.compile compatibility.<br><br><b style=\"color: #ef4444\">Warning:</b> After removing or switching a LoRA, you may still see its style in generated images. To get a clean model, reload it from the model selector."},
|
||||
{"id":"","label":"LoRA precision when quantized","localized":"","reload":"","hint":"When using a BnB 4-bit model, LoRA is applied by decompressing the weights, adding the LoRA, then recompressing. This controls the format used for recompression.<br><br>Only affects BnB 4-bit models. SDNQ models keep their original format."},
|
||||
{"id":"","label":"Local","localized":"","reload":"","hint":"Models that are downlaoded and ready to use"},
|
||||
{"id":"","label":"Gallery","localized":"","reload":"","hint":"Image gallery"},
|
||||
{"id":"","label":"Reference","localized":"","reload":"","hint":"List of reference models that can be automatically downloaded on first use"},
|
||||
@@ -891,8 +894,8 @@
|
||||
{"id":"","label":"loaded lora","localized":"","reload":"","hint":"loaded lora"},
|
||||
{"id":"","label":"logsnr","localized":"","reload":"","hint":"logsnr"},
|
||||
{"id":"","label":"loop","localized":"","reload":"","hint":"loop"},
|
||||
{"id":"","label":"lora add hash info to metadata","localized":"","reload":"","hint":"lora add hash info to metadata"},
|
||||
{"id":"","label":"lora auto-apply tags","localized":"","reload":"","hint":"lora auto-apply tags"},
|
||||
{"id":"","label":"LoRA add hash info to metadata","localized":"","reload":"","hint":"Include LoRA file hashes in generated image metadata.<br>Useful for reproducibility and tracking which exact LoRA versions were used."},
|
||||
{"id":"","label":"LoRA auto-apply tags","localized":"","reload":"","hint":"Automatically add trigger words/tags from LoRA metadata to your prompt.<br>Set to the number of tags to auto-apply, e.g., 3 = add top 3 trigger tags.<br>Set to 0 to disable, -1 to add all available tags."},
|
||||
{"id":"","label":"lora load using diffusers method for selected models","localized":"","reload":"","hint":"lora load using diffusers method for selected models"},
|
||||
{"id":"","label":"lora load using legacy method","localized":"","reload":"","hint":"lora load using legacy method"},
|
||||
{"id":"","label":"lora target filename","localized":"","reload":"","hint":"lora target filename"},
|
||||
|
||||
+1
-1
@@ -748,7 +748,7 @@ options_templates.update(options_section(('extra_networks', "Networks"), {
|
||||
"lora_apply_tags": OptionInfo(0, "LoRA auto-apply tags", gr.Slider, {"minimum": -1, "maximum": 32, "step": 1}),
|
||||
"lora_in_memory_limit": OptionInfo(1, "LoRA memory cache", gr.Slider, {"minimum": 0, "maximum": 32, "step": 1}),
|
||||
"lora_add_hashes_to_infotext": OptionInfo(False, "LoRA add hash info to metadata"),
|
||||
"lora_quant": OptionInfo("NF4","LoRA precision when quantized", gr.Radio, {"choices": ["NF4", "FP4"]}),
|
||||
#"lora_quant": OptionInfo("NF4","LoRA precision when quantized", gr.Radio, {"choices": ["NF4", "FP4"]}), setting not yet implemented
|
||||
|
||||
"extra_networks_styles_sep": OptionInfo("<h2>Styles</h2>", "", gr.HTML),
|
||||
"extra_networks_styles": OptionInfo(True, "Show reference styles"),
|
||||
|
||||
Reference in New Issue
Block a user