How I train a LoRA: m3lt style training overview
alvdansen
• • 55How to use alvdansen/m3lt with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("alvdansen/m3lt")
prompt = "creature in the style of TOK"
image = pipe(prompt).images[0]








A new model from Alvdansen Labs exploring surreal themes and soft tones.
This model is for research and personal use. Please contact me directly before using it in a commercial service.
You should use style of TOK to trigger the image generation.
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
Base model
stabilityai/stable-diffusion-xl-base-1.0