模型:

nitrosocke/spider-verse-diffusion

英文

Spider-Verse扩散

这是通过索尼的《蜘蛛侠:平行宇宙》的电影剧照进行微调的Stable Diffusion模型。在提示中使用"spiderverse style"这些标记以获得该效果。

如果你喜欢我的作品,请考虑支持我

? 扩散器

使用这个模型与任何其他Stable Diffusion模型一样。要获取更多信息,请参考 Stable Diffusion

您还可以将模型导出到 ONNX MPS 和/或 FLAX/JAX

#!pip install diffusers transformers scipy torch
from diffusers import StableDiffusionPipeline
import torch

model_id = "nitrosocke/spider-verse-diffusion"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")

prompt = "a magical princess with golden hair, spiderverse style"
image = pipe(prompt).images[0]

image.save("./magical_princess.png")

使用模型渲染的肖像画: 用于训练的样本图像:

此模型使用基于dreambooth训练和先验保护损失的扩散进行了3000步的训练。

许可

此模型对所有人开放,使用CreativeML OpenRAIL-M许可证进一步指定权利和使用方式。CreativeML OpenRAIL许可证规定:

  • 你不能使用该模型故意生成或分享非法或有害的输出或内容
  • 作者对您生成的输出不享有任何权利,您可以自由使用它们,并对其使用负责,但不得违反许可证中的规定
  • 您可以重新分发权重,并将模型用于商业目的和/或作为服务。如果您这样做,请注意您必须包括与许可证中相同的使用限制,并向所有用户共享CreativeML OpenRAIL-M的拷贝(请完整且仔细地阅读许可证) Please read the full license here