模型:
valhalla/emoji-diffusion
emoji-diffusion is a stable diffusion model fine-tuned on the russian-emoji dataset to generate emoji images. Below are some samples generated using the model.
This model can be used just like any other Stable Diffusion model. For more information, please have a look at the Stable Diffusion .
You can also export the model to ONNX , MPS and/or FLAX/JAX .
To get the best result use the text "emoji" at beginning or end of the prompt.
import torch from diffusers import StableDiffusionPipeline, EulerDiscreteScheduler pipe = StableDiffusionPipeline.from_pretrained( "valhalla/emoji-diffusion", torch_dtype=torch.float16, ).to("cuda") euler = EulerDiscreteScheduler.from_config(pipe.scheduler.config) pipe.scheduler = euler prompt = "a unicorn lama emoji" image = pipe(prompt, num_inference_steps=30).images[0] image.save("lama_emoji.png")
This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage. The CreativeML OpenRAIL License specifies:
This model can be used for entertainment purposes and as a generative art assistant.