import torch from diffusers import FluxPipeline from nunchaku import NunchakuFluxTransformer2dModel transformer = NunchakuFluxTransformer2dModel.from_pretrained("mit-han-lab/svdq-fp4-flux.1-schnell", precision="fp4") pipeline = FluxPipeline.from_pretrained( "black-forest-labs/FLUX.1-schnell", transformer=transformer, torch_dtype=torch.bfloat16 ).to("cuda") image = pipeline( "A cat holding a sign that says hello world", width=1024, height=1024, num_inference_steps=4, guidance_scale=0 ).images[0] image.save("flux.1-schnell.png")