You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Using IP-Adapter with negative noise | Using negative noise with IP-adapter to better control the generation (see the [original post](https://github.com/huggingface/diffusers/discussions/7167) on the forum for more details) |[IP-Adapter Negative Noise](#ip-adapter-negative-noise)||[Álvaro Somoza](https://github.com/asomoza)|
10
10
| asymmetric tiling |configure seamless image tiling independently for the X and Y axes |[Asymmetric Tiling](#asymmetric-tiling)||[alexisrolland](https://github.com/alexisrolland)|
11
+
| Prompt scheduling callback |Allows changing prompts during a generation |[Prompt Scheduling](#prompt-scheduling)||[hlky](https://github.com/hlky)|
Prompt scheduling callback allows changing prompts during a generation, like [prompt editing in A1111](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#prompt-editing)
238
+
239
+
```python
240
+
from diffusers import StableDiffusionPipeline
241
+
from diffusers.callbacks import PipelineCallback, MultiPipelineCallbacks
242
+
from diffusers.configuration_utils import register_to_config
prompt="Official portrait of a smiling world war ii general, female, cheerful, happy, detailed face, 20th century, highly detailed, cinematic lighting, digital art painting by Greg Rutkowski",
303
+
negative_prompt="Deformed, ugly, bad anatomy",
304
+
cutoff_step_ratio=0.25,
305
+
)
306
+
]
307
+
)
308
+
309
+
image = pipeline(
310
+
prompt="Official portrait of a smiling world war ii general, male, cheerful, happy, detailed face, 20th century, highly detailed, cinematic lighting, digital art painting by Greg Rutkowski",
0 commit comments