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-v0.2",
6 torch_dtype=torch.float16,
7 variant="fp16",
8).to("cuda")
9
10image = pipeline(
11 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.",
12 height=1024,
13 width=1024,
14 num_inference_steps=50,
15 generator=torch.Generator().manual_seed(666),
16 guidance_scale=3.5,
17).images[0]
18
19image.save("output.png")