Skip to content

Commit

Permalink
scales
Browse files Browse the repository at this point in the history
  • Loading branch information
gokayfem committed Oct 17, 2024
1 parent 845892e commit 8a0fdae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nodes/image_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,12 +254,12 @@ def INPUT_TYPES(cls):
"num_images": ("INT", {"default": 1, "min": 1, "max": 4}),
"enable_safety_checker": ("BOOLEAN", {"default": True}),
"lora_path_1": ("STRING", {"default": ""}),
"lora_scale_1": ("FLOAT", {"default": 0.7, "min": 0.0, "max": 1.0, "step": 0.1}),
"lora_scale_1": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 2.0, "step": 0.05}),
},
"optional": {
"seed": ("INT", {"default": -1}),
"lora_path_2": ("STRING", {"default": ""}),
"lora_scale_2": ("FLOAT", {"default": 0.7, "min": 0.0, "max": 1.0, "step": 0.1}),
"lora_scale_2": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 2.0, "step": 0.05}),
}
}

Expand Down Expand Up @@ -345,9 +345,9 @@ def INPUT_TYPES(cls):
"ip_adapter_image": ("IMAGE",),
"ip_adapter_mask": ("MASK",),
"lora_path_1": ("STRING", {"default": ""}),
"lora_scale_1": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0, "step": 0.1}),
"lora_scale_1": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 2.0, "step": 0.05}),
"lora_path_2": ("STRING", {"default": ""}),
"lora_scale_2": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 1.0, "step": 0.1}),
"lora_scale_2": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 2.0, "step": 0.05}),
}
}

Expand Down

0 comments on commit 8a0fdae

Please sign in to comment.