Japanese Stable Diffusion
Hugging Face
Rinna fine-tuned Stable Diffusion into a Japanese-specific version that understands local slang and culture directly, no translation needed. It fixes the weird 'Western salaryman' problem you get when translating Japanese prompts into English first.
Based on reporting by Hugging Face — read the original for the full story.
Summary, retelling and take written by AI under human oversight; images are AI-generated illustrations. How we work · Report an error
Stable Diffusion is great until you ask it for something culturally specific in a language it wasn't built for. Type in a Japanese prompt, translate it to English, and you often get an image that technically matches the words but misses the vibe entirely. Rinna Co., Ltd. just released a fix: Japanese Stable Diffusion, a version fine-tuned specifically to read and render Japanese the way Japanese speakers actually mean it.
The core problem is Stable Diffusion's training data. It leans heavily on the English subset of LAION-5B, so the model's sense of the world is filtered through Western imagery. Rinna's team trained on roughly 100 million Japanese-captioned images instead, pulling from the Japanese subset of LAION-5B and filtering out low-quality samples using their own japanese-cloob-vit-b-16 scoring model. Still, that dataset is about a twentieth the size of what the original Stable Diffusion trained on, which is exactly why they didn't try to build from scratch.
Instead they used a two-stage fine-tuning approach borrowed from the PITI method. First, they swapped in a Japanese-specific text encoder and trained it while keeping the image-generating diffusion model frozen. This mattered because CLIP's default tokenizer mangles Japanese into unreadable byte fragments — try tokenizing サラリーマン 油絵 with it and you get garbage like 'ãĤµãĥ©ãĥª'. Rinna's own sentencepiece tokenizer splits it cleanly into recognizable words. But after this first stage, prompts were understood correctly while images still came out looking Western — a
My take — AI-written commentary, not fact-checked reporting
This is the unglamorous but necessary work nobody hypes on Twitter: making AI actually work for languages that aren't English. Every 'universal' foundation model quietly encodes whichever culture trained it, and pretending otherwise is how you end up with salarymen who look like they walked out of a Boston boardroom. Rinna open-sourcing this is a small, useful correction — I'd rather see ten of these regional fine-tunes than one more marginally bigger English-only model.
Read more about this at: Hugging Face