Skip to content

Commit

Permalink
more preset tweakin
Browse files Browse the repository at this point in the history
  • Loading branch information
aayars committed Aug 9, 2023
1 parent 961f4b4 commit 5392924
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 16 deletions.
23 changes: 12 additions & 11 deletions noisemaker/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,25 +388,26 @@ class ValueMask(Enum):
sparsest = 1002

invaders = 1003
invaders_square = 1004
invaders_large = 1004
invaders_square = 1005

matrix = 1005
matrix = 1006

letters = 1006
letters = 1007

ideogram = 1007
ideogram = 1008

iching = 1008
iching = 1009

script = 1009
script = 1010

white_bear = 1010
white_bear = 1011

tromino = 1011
tromino = 1012

alphanum_binary = 1012
alphanum_numeric = 1013
alphanum_hex = 1014
alphanum_binary = 1013
alphanum_numeric = 1014
alphanum_hex = 1015

truetype = 1020

Expand Down
5 changes: 5 additions & 0 deletions noisemaker/masks.py
Original file line number Diff line number Diff line change
Expand Up @@ -2306,6 +2306,11 @@ def invaders(**kwargs):
return _invaders(**kwargs)


@mask([18, 18, 1])
def invaders_large(**kwargs):
return _invaders(**kwargs)


@mask([6, 6, 1])
def invaders_square(**kwargs):
return _invaders(**kwargs)
Expand Down
15 changes: 10 additions & 5 deletions noisemaker/presets.py
Original file line number Diff line number Diff line change
Expand Up @@ -583,8 +583,9 @@
},
"ai": {
"prompt": "psychedelic fractal imagery with overlapping ripples",
"image_strength": 0.375,
"image_strength": 0.225,
"cfg_scale": 25,
"model": "stable-diffusion-xl-1024-v1-0",
}
},

Expand All @@ -601,8 +602,9 @@
},
"ai": {
"prompt": "a brightly colored trippy psychedelic design with overlapping waves",
"image_strength": 0.5,
"image_strength": 0.225,
"cfg_scale": 25,
"model": "stable-diffusion-xl-1024-v1-0",
}
},

Expand Down Expand Up @@ -794,8 +796,9 @@
},
"ai": {
"prompt": "fur, flow field, geometric shapes",
"image_strength": 0.75,
"cfg_scale": 15,
"image_strength": 0.375,
"cfg_scale": 20,
"model": "stable-diffusion-xl-1024-v1-0",
}
},

Expand Down Expand Up @@ -1646,8 +1649,9 @@
},
"ai": {
"prompt": "psychedelic fractal turbulence, swirling, unmixed, eddies",
"image_strength": 0.625,
"image_strength": 0.375,
"cfg_scale": 25,
"model": "stable-diffusion-xl-1024-v1-0",
},
},

Expand Down Expand Up @@ -4566,6 +4570,7 @@
"prompt": "psychedelic fractal pattern with repeated bands of color",
"image_strength": 0.375,
"cfg_scale": 25,
"model": "stable-diffusion-xl-1024-v1-0",
}
},

Expand Down

0 comments on commit 5392924

Please sign in to comment.