Diffusers How to use FunkingGod/torikun 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("FunkingGod/torikun")
prompt = "art by torikun,two young individuals,one standing and one sitting,on a jagged,rocky outcropping in a futuristic cityscape. the standing figure,on the left,has dark skin and wears a black hoodie with the hood pulled up,covering their hair,which appears to be purple. they are also wearing baggy pants and black boots and has green eyes. the sitting figure,on the right,has light skin and a short,straight haircut with a deep purple hue. they are dressed in a dark,oversized hoodie and baggy pants,with black boots that have visible laces. both figures have a modern,edgy style. the background features a cityscape with geometric,angular buildings in various shades of pink and red,giving a futuristic and somewhat dystopian feel. the sky is a gradient of light blue to dark blue,with a hint of pink at the horizon,suggesting a sunset or dawn. the ground is a mix of jagged rocks and scattered debris,adding to the gritty,urban atmosphere."
image = pipe(prompt).images[0]