Commit c8b5e08d authored by comfyanonymous's avatar comfyanonymous
Browse files

Default shift value on SD3 is 3.0

parent 1ddf512f
...@@ -136,7 +136,7 @@ class ModelSamplingSD3: ...@@ -136,7 +136,7 @@ class ModelSamplingSD3:
@classmethod @classmethod
def INPUT_TYPES(s): def INPUT_TYPES(s):
return {"required": { "model": ("MODEL",), return {"required": { "model": ("MODEL",),
"shift": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 100.0, "step":0.01}), "shift": ("FLOAT", {"default": 3.0, "min": 0.0, "max": 100.0, "step":0.01}),
}} }}
RETURN_TYPES = ("MODEL",) RETURN_TYPES = ("MODEL",)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment