mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-08-17 03:23:01 +02:00
Don't include empty lora values in the metadata
This commit is contained in:
@ -292,6 +292,10 @@ const TASK_MAPPING = {
|
||||
use_lora_model: {
|
||||
name: "LoRA model",
|
||||
setUI: (use_lora_model) => {
|
||||
if (!use_lora_model) {
|
||||
return
|
||||
}
|
||||
|
||||
let modelPaths = []
|
||||
use_lora_model.forEach((m) => {
|
||||
if (m.includes("models\\lora\\")) {
|
||||
@ -329,6 +333,10 @@ const TASK_MAPPING = {
|
||||
lora_alpha: {
|
||||
name: "LoRA Strength",
|
||||
setUI: (lora_alpha) => {
|
||||
if (!lora_alpha) {
|
||||
return
|
||||
}
|
||||
|
||||
loraModelField.modelWeights = lora_alpha
|
||||
},
|
||||
readUI: () => {
|
||||
|
Reference in New Issue
Block a user