Views
No views yet
pip install bitsandbytes1from diffusers import FluxPipeline
2import torch
3pipeline = FluxPipeline.from_pretrained("eramth/asian-flux-4bit",torch_dtype=torch.float16).to("cuda")
4# This allows you to generate higher resolution images without much extra VRAM usage.
5pipeline.vae.enable_tiling()
6image = pipeline(prompt="a cute cat",num_inference_steps=25,guidance_scale=3.5).images[0]
7image
8