Diffusers How to use strangerzonehf/Flux-Isometric-3D-Cinematography with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("strangerzonehf/Flux-Isometric-3D-Cinematography")
prompt = "Isometric 3D Cinematography, a small boy stands in front of a playmat. The playmat is adorned with a variety of toys, including a car, a fire hydrant, and a fireman. The boy is wearing a short-sleeved blue t-shirt, and tan pants. The floor is made of light-colored wood planks, and the walls are painted white. To the right of the boy is a wooden shelf, and to the left of the shelf is a green bench. The shelf is filled with various toys, and there is a window in the background."
image = pipe(prompt).images[0]