How to use ohcaidek/concept 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("ohcaidek/concept") prompt = "somber and cinematic scene, fantasy, game digital art, a fallen knight resting against a gravestone in a snow-covered graveyard, the knight clad in full armor, grips a sword with hand, the blade buried in the snow, Snowflakes gently fall around him, melancholic atmosphere, background is a dark gothic castle looms that obscured by the swirling snow and mist, haunting beauty of a warrior's final rest" image = pipe(prompt).images[0]