Diffusers How to use TheMindExpansionNetwork/m1ndw4lk 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("TheMindExpansionNetwork/m1ndw4lk")
prompt = "\"Imagine a serene winter landscape bathed in soft, diffused light, where crystalline trees shimmer with frost under a pearlescent sky. A vibrant village glows warmly against the expanse of snow-covered hills, creating a tranquil scene of stillness and cozy warmth, emblematic of m1ndw4lk serenity.\""
image = pipe(prompt).images[0]