How to use from the
Use from the
Diffusers library
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline

# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("kimi000/silent-aurora-37", dtype=torch.bfloat16, device_map="cuda")

prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k"
image = pipe(prompt).images[0]

Silent Aurora 37

Native Diffusers export of a trained FLUX.2 Klein Base 4B checkpoint.

Provenance

  • Source experiment: flux2_klein_base_4b_diffusionnft_dvreward_prompt_rubric_v4_2_repetition_aware_16prompts_group14_7train_1dvreward_tp1_2node_512px_20step_cfg4_nrt
  • Formal run: flux2-v42-direct-formal-cb425373
  • Source checkpoint: models/step_500.pt
  • Global step: 500
  • Export weights: EMA
  • Source checkpoint SHA-256: b8e493e8c597cbbef26e8e17ea9917f08f020f759cd6cc719eb039f57feaabea
  • Base model revision: a3b4f4849157f664bdbc776fd7453c2783562f4d
  • LoRA rank / alpha: 32 / 64
  • Training profile: prompt-rubric v4.2 repetition-aware DVReward, 512px, 20 rollout steps, CFG 4
  • Export format: diffusers.Flux2KleinPipeline, BF16, max shard size 1GB

Verification

The exporter matched and merged 60 default LoRA pairs. Relative to the Base transformer, 60 tensors and 2,437,723,141 elements changed; maximum absolute parameter delta was 0.009918212890625. Offline reload reproduced the same deltas. The fixed-seed 512px smoke image differed from Base in 777,910 channel values. The checkpoint's 120 _diffusionnft_old_policy_#### rollout buffers were recorded and excluded because they are training-only state rather than Diffusers transformer weights.

See export_manifest.json, verification.json, and artifact_checksums.sha256 for machine-readable provenance and integrity data.

Loading

import torch
from diffusers import Flux2KleinPipeline

pipe = Flux2KleinPipeline.from_pretrained(
    "kimi000/silent-aurora-37",
    torch_dtype=torch.bfloat16,
)
pipe.to("cuda")
image = pipe(
    "A cinematic photograph of a red fox walking through a snowy forest",
    num_inference_steps=20,
    guidance_scale=4.0,
).images[0]
Downloads last month
5
Safetensors
Model size
4B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support