CoolFace
Modelpublic

kentarrito/stable-diffusion-2-kanji-finetune

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes3downloads
Model Card

๐Ÿงพ Model Card: Full Fine-Tuned โ€“ kentarrito/stable-diffusion-2-kanji-finetune

๐Ÿˆถ Stable Diffusion 2 โ€“ Kanji Fine-Tune (Full Model)

This is a full fine-tuned version of Stable Diffusion 2 on a custom dataset of kanji characters and their English meanings. The model was trained to generate kanji-style images based on English prompts such as "fire", "mountain", or "peace".

๐Ÿ“ฆ Usage

python
from diffusers import StableDiffusionPipeline
import torch

pipe = StableDiffusionPipeline.from_pretrained(
    "kentarrito/stable-diffusion-2-kanji-finetune",
    torch_dtype=torch.float16
).to("cuda")

image = pipe(prompt="fire").images[0]
image.show()

๐Ÿ–ผ๏ธ Generated Samples

See Github

๐Ÿง  Dataset

The dataset was built using:

Each training sample pairs an image of a kanji with one of its English meanings.

๐ŸŽฏ Limitations

  • โ€”Generated images are kanji-like but may not be accurate or interpretable as real characters.
  • โ€”The model may fail with abstract or multi-word prompts.

๐Ÿงช Training

  • โ€”Training Code Github
  • โ€”Model: stabilityai/stable-diffusion-2
  • โ€”Fine-tuning: Full model training (UNet, text encoder, VAE)
  • โ€”Framework: Hugging Face diffusers
  • โ€”GPU: A40

๐Ÿ“œ License

MIT License. Dataset sources are licensed under their respective terms.