Skip to content

Commit

Permalink
Reduce CFG Scale minimum to 0 to disable
Browse files Browse the repository at this point in the history
  • Loading branch information
carson-katri committed May 17, 2024
1 parent c872f8b commit 5d255de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion property_groups/dream_prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def seed_clamp(self, ctx):
"seed": StringProperty(name="Seed", default="0", description="Manually pick a seed", update=seed_clamp),
"iterations": IntProperty(name="Iterations", default=1, min=1, description="How many images to generate"),
"steps": IntProperty(name="Steps", default=25, min=1),
"cfg_scale": FloatProperty(name="CFG Scale", default=7.5, min=1, soft_min=1.01, description="How strongly the prompt influences the image"),
"cfg_scale": FloatProperty(name="CFG Scale", default=7.5, min=0, description="How strongly the prompt influences the image"),
"scheduler": EnumProperty(name="Scheduler", items=scheduler_options, default=3), # defaults to "DPM Solver Multistep"
"step_preview_mode": EnumProperty(name="Step Preview", description="Displays intermediate steps in the Image Viewer. Disabling can speed up generation", items=step_preview_mode_options, default=1),

Expand Down

0 comments on commit 5d255de

Please sign in to comment.