Aleksandra11/90style_anime_face_model
011
๐จ 90style Anime Face Model (DreamBooth fine-tune)
Fine-tuned Stable Diffusion model on anime-style faces using DreamBooth. Model trained by @Aleksandra11.
๐ Usage
To use this model, load it into the Stable Diffusion pipeline manually using ๐ค diffusers.
This model is used to generate faces in the style of Japanese animation from the 90s. Instance prompt is word 'retrovers'.
๐ง Example (Diffusers):
from diffusers import StableDiffusionPipeline
import torch
pipe = StableDiffusionPipeline.from_pretrained(
"Aleksandra11/90style_anime_face_model",
torch_dtype=torch.float16,
use_safetensors=True # or False if using .bin files
).to("cuda")
# Generate image
prompt = "retrovers, beautiful blonde girl with voluminous wavy hair, wearing red roses in her hair, blue eyes, doll-like face, soft lighting, romantic and whimsical aesthetic, high detail, 4k"
image = pipe(prompt, num_inference_steps=50, guidance_scale=7.5).images[0]
image.save("output.png")Example result 
