Stable Diffusion反向提示词详解:原理、代码实现与应用示例
创作时间:
作者:
@小白创作中心
Stable Diffusion反向提示词详解:原理、代码实现与应用示例
引用
CSDN
1.
https://m.blog.csdn.net/2301_80239908/article/details/143994420
Stable Diffusion作为当前最流行的AI绘画工具之一,其强大的文本到图像生成能力吸引了众多用户的关注。然而,除了使用正向提示词来引导图像生成外,我们还可以通过反向提示词来控制图像中不希望出现的内容。本文将详细介绍Stable Diffusion中反向提示词的功能、原理和具体实现方法,帮助读者更好地掌握这一实用技巧。
反向文本提示词概念
反向提示词是Stable Diffusion模型中的一种额外功能,用于告诉模型我们不想在生成的图像中看到什么。这个功能非常流行,可以删除用户不想从原始生成的图像中看到的任何内容。示例如下:
原理理解
反向文本提示的工作方式是在进行采样时使用用户指定的文本来替代之前空字符串进行条件嵌入(uncond)。具体来说,我们通过传递一个额外的参数neg_prompts
来更改prompt_2_img
函数。原理如下:
代码实现
基于上述分析,我们可以使用以下代码来实现反向文本提示信息的嵌入:
def prompt_2_img(prompts, neg_prompts=None, g=7.5, seed=100, steps=70, dim=512, save_int=False):
# Defining batch size
bs = len(prompts)
# Converting textual prompts to embedding
text = text_enc(prompts)
# Adding an unconditional prompt , helps in the generation process
if not neg_prompts:
uncond = text_enc([""] * bs, text.shape[1])
else:
uncond = text_enc(neg_prompts, text.shape[1])
emb = torch.cat([uncond, text])
# Setting the seed
if seed:
torch.manual_seed(seed)
# Initiating random noise
latents = torch.randn((bs, unet.in_channels, dim//8, dim//8))
# Setting number of steps in scheduler
scheduler.set_timesteps(steps)
# Adding noise to the latents
latents = latents.to("cuda").half() * scheduler.init_noise_sigma
# Iterating through defined steps
for i, ts in enumerate(tqdm(scheduler.timesteps)):
# We need to scale the i/p latents to match the variance
inp = scheduler.scale_model_input(torch.cat([latents] * 2), ts)
# Predicting noise residual using U-Net
with torch.no_grad():
u, t = unet(inp, ts, encoder_hidden_states=emb).sample.chunk(2)
# Performing Guidance
pred = u + g*(t-u)
# Conditioning the latents
latents = scheduler.step(pred, ts, latents).prev_sample
# Saving intermediate images
if save_int:
if not os.path.exists(f'./steps'):
os.mkdir(f'./steps')
latents_to_pil(latents)[0].save(f'steps/{i:04}.jpeg')
# Returning the latent representation to output an image of 3x512x512
return latents_to_pil(latents)
整体代码逻辑和之前的逻辑保持一致,唯一不同的就是对反向提示词的处理,已在上一节进行阐述。
功能验证
接着,我们使用以下代码来验证上述函数的功能:
## Image without neg prompt
images = [None, None]
images[0] = prompt_2_img(prompts = ["A dog wearing a white hat"], neg_prompts=[""], steps=50, save_int=False)[0]
images[1] = prompt_2_img(prompts = ["A dog wearing a white hat"], neg_prompts=["White hat"], steps=50, save_int=False)[0]
## Plotting side by side
fig, axs = plt.subplots(1, 2, figsize=(12, 6))
for c, img in enumerate(images):
axs[c].imshow(img)
if c == 0:
axs[c].set_title(f"A dog wearing a white hat")
else:
axs[c].set_title(f"Neg prompt - white hat")
得到结果如下:
扩展
正如我们所看到的,这是一个非常方便的功能,可以根据大家的喜好对图像进行微调。当然也可以用它来生成一张非常逼真的脸,仅仅需要增加更加详细的文本提示描述。让我们试试:
prompt = ['Close-up photography of the face of a 30 years old man with brown eyes, (by Alyssa Monks:1.1), by Joseph Lorusso, by Lilia Alvarado, beautiful lighting, sharp focus, 8k, high res, (pores:0.1), (sweaty:0.8), Masterpiece, Nikon Z9, Award - winning photograph']
neg_prompt = ['lowres, signs, memes, labels, text, food, text, error, mutant, cropped, worst quality, low quality, normal quality, jpeg artifacts, signature, watermark, username, blurry, made by children, caricature, ugly, boring, sketch, lacklustre, repetitive, cropped, (long neck), facebook, youtube,body horror, out of frame, mutilated, tiled, frame, border, porcelain skin, doll like, doll']
images = prompt_2_img(prompts = prompt, neg_prompts=neg_prompt, steps=50, save_int=False)
out = images[0]
得到结果如下:
非常整洁!希望这能引起大家一些关于如何使用文本提示词来控制稳定扩散模型输出的想法。
总结
本文重点介绍了使用反向文本提示词来进行条件嵌入实现控制文本生成图像内容的相关背景知识和具体代码实现,并给出了相应的示例。
热门推荐
2024“上海世界美食分布指数”发布,黄浦这两项排名全市第一
从历史风韵到国际风采:杭州的蜕变之路
跳高项目的发展史
桃之夭夭春无限,曲香悠悠酒脉长
春日赏花又上新:上海桃花节开幕,首次联动“八镇两区域”
被红矮星潮汐锁定的行星上能否宜居?这很复杂!
健康管理打卡项目怎么写
黄曲霉素对健康有哪些影响?
《侯门宴》:复活的东汉历史画卷
维生素D3测定:方法、意义及保持平衡的建议
茱萸是什么植物?,古老植物的现代解读
月费超百万、上厕所都跟着,揭秘马斯克的贴身保镖团
芝麻油怎么选
太阳能控制器故障导致一直上水?这份维修指南请收好
人工智能驱动的精准医疗:通过个性化干预转型医疗
郭朴简介:一位为中国科技发展做出卓越贡献的科学家
GPU 服务器性能评估:多维度深度探索
遇见色彩 | 清透微紫色,浪漫唯美的诗意,在家中上演朦胧美学
中科院最新研究揭示秸秆还田对土壤N2O排放的双重作用机制
新加坡钞票上的图案竟然藏着国家的发展故事
2月起,太原巡游出租车将大更新
机器学习:如何防止过拟合
手机密码忘了怎么办?多种解锁方法帮你轻松应对
季后赛形势分析:西部大乱斗勇士前六不稳 东部格局清晰前十基本确定
考研复试英语面试技巧
Matlab中loglog函数使用详解
loglog函数和semilogx函数的区别
新手养鱼指南:五种适合初次饲养的热带淡水鱼推荐
Steam十大克苏鲁题材单机游戏推荐
如何养护叉尾斗鱼,让它成为家中的焦点!