Diffusers How to use strangerzonehf/nft-beta2-x 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/nft-beta2-x")
prompt = "nft 3d, a 3D rendering of a chimpanzees face, adorned with a pair of white sunglasses. The chimpanzee is wearing a black collared button-down shirt with a white collar and an orange patch on the left side of the shirt. Its mouth is open, revealing white teeth. Its ears are sticking out, adding a pop of color to the scene. The background is a solid black, creating a stark contrast to the chimpanzee."
image = pipe(prompt).images[0]