Stable Diffusion反向提示词详解:原理、代码实现与应用示例
创作时间:
作者:
@小白创作中心
Stable Diffusion反向提示词详解:原理、代码实现与应用示例
引用
CSDN
1.
https://blog.csdn.net/2301_80239908/article/details/143994420
在之前的文章中,我们先后介绍了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]
得到结果如下:
非常整洁!我希望这能引起大家一些关于如何使用文本提示词来控制稳定扩散模型输出的想法。
总结
本文重点介绍了使用反向文本提示词来进行条件嵌入实现控制文本生成图像内容的相关背景知识和具体代码实现,并给出了相应的示例。
热门推荐
二战期间苏联内部为何对德侵苏情报视而不见?
汽车怠速与油耗的关系,你真的了解吗?
亚洲船东集体发声:共同维护海员安全,呼吁公平对待被扣留海员
解析5大鬼压床原因,告诉你鬼压床是什么感觉
BIM技术在城市大型综合体人防工程中的应用实践与成效分析
虎皮青椒要不要加水?饭店厨师说,多了这一步影响口感
深空激光通信发展现状与趋势分析
王殿武:提升你的磁场,你的磁场,其实就是你的一切
泰拉瑞亚哪个召唤物更好
6种素馅包子馅配方和做法,清淡素净,营养健康,比肉馅的还好吃
王若愚:军兵种发展75年,形成“4+4”新型结构布局
恋与深空男主介绍:五位男主的魅力与人气排名
马桶进水阀维修方法(解决欧路莎马桶进水阀不止水的问题)
氰化浸出提金方法的优点和缺点
贵阳市南明区:建立四类教育集团模式 实现“一校好”到“校校好”
2024年必玩的5款冒险文字游戏推荐
虚拟现实中的心理咨询:探索心灵世界的新方法
新手投资者如何降低杠杆式交易风险?
全国护发日 | 养发照着这样吃,呵护你的“每一丝美丽”
面对挂科,如何调整心态与制定有效补救计划?
总投资约521亿元,中海壳牌惠州三期乙烯项目正式启动
住宅装修指南:流程与时间规定
60岁老人能否安全旅行到西藏?
人工智能重塑军事格局:自主武器的双刃剑
《雷雨》中的混乱家庭,实则是曹禺的真实生活,生活远比作品狗血
远红外如何帮助您摆脱腰椎间盘疾病的困扰?
哲学的诞生:古希腊泰勒斯与中国的“穷神知化”
游戏王卡片稀有度等级全解析:从PR金爆到20SER红字银碎
父母赠房变夫妻共有?关键细节曝光!
尺侧腕伸肌腱鞘炎的相关解剖、症状、诊断和治疗