Skip to content

Commit

Permalink
Fix default for neg in sample config
Browse files Browse the repository at this point in the history
  • Loading branch information
ScreenGlass authored Oct 4, 2024
1 parent a800c9d commit de27ac2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toolkit/config_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def __init__(self, **kwargs):
self.width: int = kwargs.get('width', 512)
self.height: int = kwargs.get('height', 512)
self.prompts: list[str] = kwargs.get('prompts', [])
self.neg = kwargs.get('neg', False)
self.neg = kwargs.get('neg', '')
self.seed = kwargs.get('seed', 0)
self.walk_seed = kwargs.get('walk_seed', False)
self.guidance_scale = kwargs.get('guidance_scale', 7)
Expand Down Expand Up @@ -878,4 +878,4 @@ def log_image(self, image, count: int = 0, max_count=0):
if self.logger is None:
return

self.logger.log_image(image, count, self.prompt)
self.logger.log_image(image, count, self.prompt)

0 comments on commit de27ac2

Please sign in to comment.