CoolFace
Modelpublic

Aleksandra11/90style_anime_face_model

sourceHugging Faceopenrailupdated 1y agoView on Hugging Face
0likes11downloads
Model Card

๐ŸŽจ 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):

python
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 image/png