图像变体
稳定扩散模型还可以从输入图像生成变体。它使用由Justin Pinkney来自Lambda微调的稳定扩散模型版本。
原始代码库可以在LambdaLabsML/lambda-diffusers中找到,图像变体的其他官方检查点可以在lambdalabs/sd-image-variations-diffusers中找到。
请务必查看稳定扩散提示部分,了解如何探索调度器速度和质量之间的权衡,以及如何有效地重用管道组件!
StableDiffusionImageVariationPipeline
类 diffusers.StableDiffusionImageVariationPipeline
< 源代码 >( vae: AutoencoderKL image_encoder: CLIPVisionModelWithProjection unet: UNet2DConditionModel scheduler: KarrasDiffusionSchedulers safety_checker: StableDiffusionSafetyChecker feature_extractor: CLIPImageProcessor requires_safety_checker: bool = True )
参数
- vae (AutoencoderKL) — 用于将图像编码和解码到潜在表示的变分自动编码器 (VAE) 模型。
- image_encoder (CLIPVisionModelWithProjection) — 冻结的 CLIP 图像编码器 (clip-vit-large-patch14)。
- 文本编码器 (CLIPTextModel) — 冻结的文本编码器 (clip-vit-large-patch14).
- 分词器 (CLIPTokenizer) — 用于分词文本的
CLIPTokenizer
。 - U-Net (UNet2DConditionModel) — 用于对编码图像潜在变量进行去噪的
UNet2DConditionModel
。 - 调度器 (SchedulerMixin) — 与
unet
结合使用以对编码图像潜在变量进行去噪的调度器。 可以是 DDIMScheduler、LMSDiscreteScheduler 或 PNDMScheduler 之一。 - 安全检查器 (
StableDiffusionSafetyChecker
) — 用于评估生成图像是否可能被视为冒犯性或有害的分类模块。 请参阅 模型卡片,以了解有关模型潜在危害的更多详细信息。 - 特征提取器 (CLIPImageProcessor) — 用于从生成图像中提取特征的
CLIPImageProcessor
;用作safety_checker
的输入。
使用 Stable Diffusion 从输入图像生成图像变体的管道。
此模型继承自 DiffusionPipeline。 请查看超类文档,了解为所有管道实现的通用方法(下载、保存、在特定设备上运行等)。
__call__
< 源代码 >( 图像: Union 高度: Optional = None 宽度: Optional = None 推理步数: int = 50 引导尺度: float = 7.5 每个提示的图像数: Optional = 1 eta: float = 0.0 生成器: Union = None 潜在变量: Optional = None 输出类型: Optional = 'pil' 返回字典: bool = True 回调函数: Optional = None 回调步数: int = 1 ) → StableDiffusionPipelineOutput 或 元组
参数
- 图像 (
PIL.Image.Image
或List[PIL.Image.Image]
或torch.Tensor
) — 用于引导图像生成的图像或图像列表。 如果提供张量,则它需要与CLIPImageProcessor
兼容。 - num_inference_steps (
int
,可选,默认为 50) — 降噪步骤的数量。更多的降噪步骤通常会导致更高的图像质量,但推理速度会变慢。此参数受strength
调节。 - guidance_scale (
float
,可选,默认为 7.5) — 更高的引导尺度值鼓励模型生成与文本prompt
密切相关的图像,但会以降低图像质量为代价。当guidance_scale > 1
时启用引导尺度。 - num_images_per_prompt (
int
,可选,默认为 1) — 每个提示生成图像的数量。 - eta (
float
,可选,默认为 0.0) — 对应于来自 DDIM 论文的 eta (η) 参数。仅适用于 DDIMScheduler,在其他调度器中会被忽略。 - generator (
torch.Generator
或List[torch.Generator]
,可选) — 一个torch.Generator
用于使生成确定性。 - latents (
torch.Tensor
,可选) — 从高斯分布中采样的预生成噪声潜在变量,用作图像生成的输入。可用于使用不同的提示调整相同的生成。如果未提供,则通过使用提供的随机generator
采样来生成潜在变量张量。 - output_type (
str
,可选,默认为"pil"
) — 生成的图像的输出格式。在PIL.Image
或np.array
之间选择。 - return_dict (
bool
,可选,默认为True
) — 是否返回 StableDiffusionPipelineOutput 而不是普通元组。 - callback (
Callable
,可选) — 在推理过程中每隔callback_steps
步调用一次的函数。该函数使用以下参数调用:callback(step: int, timestep: int, latents: torch.Tensor)
。 - callback_steps (
int
,可选,默认为 1) —callback
函数调用的频率。如果未指定,则在每个步骤都调用回调函数。
返回
StableDiffusionPipelineOutput 或 tuple
如果 return_dict
为 True
,则返回 StableDiffusionPipelineOutput,否则返回一个 tuple
,其中第一个元素是一个包含生成图像的列表,第二个元素是一个包含 bool
值的列表,指示相应的生成图像是否包含“不适合工作”(nsfw)内容。
管道生成函数的调用函数。
示例
from diffusers import StableDiffusionImageVariationPipeline
from PIL import Image
from io import BytesIO
import requests
pipe = StableDiffusionImageVariationPipeline.from_pretrained(
"lambdalabs/sd-image-variations-diffusers", revision="v2.0"
)
pipe = pipe.to("cuda")
url = "https://lh3.googleusercontent.com/y-iFOHfLTwkuQSUegpwDdgKmOjRSTvPxat63dQLB25xkTs4lhIbRUFeNBWZzYf370g=s1200"
response = requests.get(url)
image = Image.open(BytesIO(response.content)).convert("RGB")
out = pipe(image, num_images_per_prompt=3, guidance_scale=15)
out["images"][0].save("result.jpg")
enable_attention_slicing
< 源代码 > ( slice_size: Union = 'auto' )
启用切片注意力计算。启用此选项后,注意力模块会将输入张量分割成切片,以便分多个步骤计算注意力。对于多个注意力头,计算将按顺序在每个头上执行。这有助于以牺牲少量速度降低为代价来节省一些内存。
⚠️ 如果您已经在使用 PyTorch 2.0 或 xFormers 中的 scaled_dot_product_attention
(SDPA),请不要启用注意力切片。这些注意力计算已经非常节省内存,因此您无需启用此功能。如果使用 SDPA 或 xFormers 启用注意力切片,可能会导致严重的速度下降!
示例
>>> import torch
>>> from diffusers import StableDiffusionPipeline
>>> pipe = StableDiffusionPipeline.from_pretrained(
... "runwayml/stable-diffusion-v1-5",
... torch_dtype=torch.float16,
... use_safetensors=True,
... )
>>> prompt = "a photo of an astronaut riding a horse on mars"
>>> pipe.enable_attention_slicing()
>>> image = pipe(prompt).images[0]
禁用切片注意力计算。如果之前调用了 enable_attention_slicing
,则注意力将在一步中计算。
enable_xformers_memory_efficient_attention
< 源代码 > ( attention_op: Optional = None )
参数
- attention_op (
Callable
,可选) — 覆盖默认的None
运算符,用作 xFormers 的memory_efficient_attention()
函数的op
参数。
启用来自 xFormers 的内存高效注意力。启用此选项后,您应该会观察到推理期间 GPU 内存使用量的降低以及潜在的速度提升。训练期间的速度提升无法保证。
⚠️ 当内存高效注意力和切片注意力都启用时,内存高效注意力优先。
示例
>>> import torch
>>> from diffusers import DiffusionPipeline
>>> from xformers.ops import MemoryEfficientAttentionFlashAttentionOp
>>> pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-2-1", torch_dtype=torch.float16)
>>> pipe = pipe.to("cuda")
>>> pipe.enable_xformers_memory_efficient_attention(attention_op=MemoryEfficientAttentionFlashAttentionOp)
>>> # Workaround for not accepting attention shape using VAE for Flash Attention
>>> pipe.vae.enable_xformers_memory_efficient_attention(attention_op=None)
StableDiffusionPipelineOutput
类 diffusers.pipelines.stable_diffusion.StableDiffusionPipelineOutput
<( images: Union nsfw_content_detected: Optional )
Stable Diffusion 管道的输出类。