Update dynthres_comfyui.py (#87)
* Update dynthres_comfyui.py comfyui timestep arg returns the sigma instead of the timestep. Thanks to piezo for helping me figure out how to convert sigma to timestep. * fix over-deletion --------- Co-authored-by: Alex "mcmonkey" Goodwin <git_commits@alexgoodwin.dev>pull/99/head
parent
249b8cb604
commit
bba97c079d
|
|
@ -34,8 +34,8 @@ class DynamicThresholdingComfyNode:
|
|||
cond = input - args["cond"]
|
||||
uncond = input - args["uncond"]
|
||||
cond_scale = args["cond_scale"]
|
||||
time_step = args["timestep"]
|
||||
dynamic_thresh.step = 999 - time_step[0]
|
||||
time_step = model.model.model_sampling.timestep(args["sigma"])
|
||||
dynamic_thresh.step = 999 - time_step
|
||||
|
||||
return input - dynamic_thresh.dynthresh(cond, uncond, cond_scale, None)
|
||||
|
||||
|
|
@ -68,8 +68,8 @@ class DynamicThresholdingSimpleComfyNode:
|
|||
cond = input - args["cond"]
|
||||
uncond = input - args["uncond"]
|
||||
cond_scale = args["cond_scale"]
|
||||
time_step = args["timestep"]
|
||||
dynamic_thresh.step = 999 - time_step[0]
|
||||
time_step = model.model.model_sampling.timestep(args["sigma"])
|
||||
dynamic_thresh.step = 999 - time_step
|
||||
|
||||
return input - dynamic_thresh.dynthresh(cond, uncond, cond_scale, None)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue