Views
No views yet

1$ pip install transformers accelerate protobuf sentencepiece
2$ pip install git+https://github.com/huggingface/diffusers.git1from diffusers import AuraFlowPipeline
2import torch
3
4pipeline = AuraFlowPipeline.from_pretrained(
5 "fal/AuraFlow",
6 torch_dtype=torch.float16
7).to("cuda")
8
9image = pipeline(
10 prompt="close-up portrait of a majestic iguana with vibrant blue-green scales, piercing amber eyes, and orange spiky crest. Intricate textures and details visible on scaly skin. Wrapped in dark hood, giving regal appearance. Dramatic lighting against black background. Hyper-realistic, high-resolution image showcasing the reptile's expressive features and coloration.",
11 height=1024,
12 width=1024,
13 num_inference_steps=50,
14 generator=torch.Generator().manual_seed(666),
15 guidance_scale=3.5,
16).images[0]