Stable Diffusion反向提示词详解:原理、代码实现与应用示例
创作时间:
作者:
@小白创作中心
Stable Diffusion反向提示词详解:原理、代码实现与应用示例
引用
CSDN
1.
https://m.blog.csdn.net/2301_80239908/article/details/143994420
在AI绘画领域,Stable Diffusion是一个广受欢迎的图像生成模型。除了使用正向提示词来引导图像生成外,反向提示词(Negative Prompt)也是一个非常实用的功能。本文将详细介绍反向提示词的概念、原理和具体实现方法,帮助读者更好地控制图像生成过程。
反向文本提示词概念
反向提示词是我们可以添加到SD模型中的一种额外功能,用于告诉稳定扩散模型我们不想在生成的图像中看到什么。这个功能很流行,可以删除用户不想从原始生成的图像中看到的任何内容。示例图像如下:
原理理解
让我们从导入所需的库和辅助函数开始。所有这些已经在本系列前面的几个组件部分中使用和解释过了,这里就不再累述,我们直接从函数prompt_2_img 开始讲起。 现在,我们将通过传递一个额外的参数neg_prompts来更改prompt_2_img函数。反向文本提示的工作方式是在进行采样时使用用户指定的文本来替代之前空字符串进行条件嵌入(uncond)。原理如下:
代码实现
基于上述分析,我们使用以下代码来实现反向文本提示信息的嵌入:
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]
得到结果如下:
非常整洁!我希望这能引起大家一些关于如何使用文本提示词来控制稳定扩散模型输出的想法。
总结
本文重点介绍了使用反向文本提示词来进行条件嵌入实现控制文本生成图像内容的相关背景知识和具体代码实现,并给出了相应的示例。
热门推荐
惠州买房必看:五证两书了解一下?
老司机与新手司机的八大驾驶习惯差异
一文读懂音频处理:从基础概念到关键指标
功能饮料别当水喝:高糖高咖啡因,专家推荐喝茶替代
从元旦到圣诞:西方传统节日的文化之旅
黄晓明与叶珂恋情疑云:怀孕、分手费,前夫哥的爆料有猫腻
大便隐血检查,守护你的肠道健康
5G+AI赋能器官捐献,同济医院创新平台保障移植安全
悦溪云梦酒店:象鼻山等三大景点举步即达
唐诗意境之美,治愈你的都市焦虑
揭开广州的面纱:理想的旅游季节
大理破酥粑粑、饵丝:一酥一软里的白族智慧
10秒搞定电脑开机F1问题,你学会了吗?
海登VS格林:谁主宰澳超新年大战?
《正在消失的物种》揭示生态危机,保护生物多样性刻不容缓
梨状肌综合征的居家康复秘籍
冬季养生,中医食疗教你驱散体内邪气
中国首艘4万吨级两栖攻击舰海南舰入列两年,大幅提升海军立体登陆作战能力
重返月球:从阿波罗11号到未来深空探索
从大连到厦门全程攻略:旅行路线、交通方式及行程规划建议
一句暖心问候,让友谊更有温度
腾讯游戏误充退款政策:未消耗部分可全额退
商业底陈逻辑:如何制定企业战略目标?
人有預知能力嗎?
捷达VS7冬季省油秘籍:六大技巧助你轻松应对寒冷季节
CT检查助力肠胃健康,专家推荐必看
腌制+蒸制+手撕:掌握这三个关键步骤,轻松做出盐焗鸡
一场文字狱,成就一代文豪:苏轼与乌台诗案
指甲有直条纹?指甲纹路与原因详解!若有横纹要注意,恐患这些病!
孙中山故里旅游区:中山市区一日游打卡胜地