Views
No views yet
| File | Format | Size | Use Case |
|---|---|---|---|
bigLove_klein2_Bf16.safetensors | BF16 | ~18 GB | Full precision, best quality |
bigLove_klein2_bf16_pruned.safetensors | BF16 (pruned) | ~18 GB | Pruned weights, slightly faster |
bigLove_klein2_fp8_pruned.safetensors | FP8 (pruned) | ~9 GB | Good balance of quality & VRAM |
bigLove_klein2_nf4.safetensors | NF4 | ~5 GB | Low VRAM, fast inference |
bigLove_klein2.gguf | GGUF | varies | For GGUF-compatible loaders |
ComfyUI/models/diffusion_models/ (or unet) folder and select it in the appropriate loader node.1from diffusers import FluxPipeline
2import torch
3
4pipe = FluxPipeline.from_pretrained(
5 "Granddyser/biglove-klein2-fp8",
6 torch_dtype=torch.bfloat16
7)
8pipe.to("cuda")
9
10image = pipe(
11 prompt="your prompt here",
12 num_inference_steps=4,
13 guidance_scale=0.0,
14).images[0]
15
16image.save("output.png")