Skip to content

Commit

Permalink
Fix xyz module name (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
huchenlei authored Apr 21, 2024
1 parent d042bb0 commit 701a208
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dynamic_thresholding.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def combine_denoised(self, x_out, conds_list, uncond, cond_scale):
######################### XYZ Plot Script Support logic #########################

def make_axis_options():
xyz_grid = [x for x in scripts.scripts_data if x.script_class.__module__ == "xyz_grid.py"][0].module
xyz_grid = [x for x in scripts.scripts_data if x.script_class.__module__ in ("xyz_grid.py", "scripts.xyz_grid")][0].module
def apply_mimic_scale(p, x, xs):
if x != 0:
setattr(p, "dynthres_enabled", True)
Expand Down

0 comments on commit 701a208

Please sign in to comment.