Some more fixes for multi-lora use-these-settings

This commit is contained in:
cmdr2
2023-08-18 17:08:19 +05:30
parent 1190bedafd
commit 894f34678e
2 changed files with 8 additions and 8 deletions

View File

@ -292,10 +292,6 @@ 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\\")) {
@ -333,10 +329,6 @@ const TASK_MAPPING = {
lora_alpha: {
name: "LoRA Strength",
setUI: (lora_alpha) => {
if (!lora_alpha) {
return
}
loraModelField.modelWeights = lora_alpha
},
readUI: () => {