Downloads · 30 days
13
100% of all-time downloads
kimi000/cedar-cloud-83
cedar-cloud-83 is a text-to-image model from kimi000. Use it when you need an image from a text prompt. It is set up for diffusers. The card lists the license as apache-2.0.
Complete native BF16 diffusers.Flux2KleinPipeline. Trained EMA LoRA weights (rank 32, alpha 64) are merged into the transformer. No FAR or PEFT runtime is needed for inference.
Downloads · 30 days
13
100% of all-time downloads
All-time downloads
13
Public
Parameters
3.9B
16 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors16 GB · 100%
From the Hugging Face model README
Complete native BF16 diffusers.Flux2KleinPipeline. Trained EMA LoRA weights
(rank 32, alpha 64) are merged into the transformer. No FAR or PEFT runtime
is needed for inference.
This is the 39-family Version Base v0.1 Seasonal curriculum experiment, not the static
AlphaGRPO baseline. Training: 512px, 20 rollout steps, CFG 4, 16 prompts per
iteration, group size 14. 100pct denotes a target, not a verified
100% online-authored fraction.
Source run: vb-v01-isolated-lifecycle-20260913. W&B run: fb24f2db64306fd0bf7dc90c08823fa6.
Exact experiment, source checkpoint hash, source revision, configuration hash
and the complete family list are recorded in provenance.json and
export_manifest.json.
verification.json records strict offline reloading, nonzero parameter
differences from Base before and after serialization, and same-seed
512px/20-step image differences from Base. These checks validate the export;
they are not benchmark results or evidence of quality improvement.
import torch
from diffusers import Flux2KleinPipeline
pipe = Flux2KleinPipeline.from_pretrained(
"kimi000/cedar-cloud-83", torch_dtype=torch.bfloat16
).to("cuda")
image = pipe(
prompt="A red ceramic teapot beside two blue cups on a wooden table.",
height=512, width=512, num_inference_steps=20, guidance_scale=4.0,
generator=torch.Generator("cuda").manual_seed(0),
).images[0]