multimodalart/ms-paint-drawing-flux
10224
MS Paint drawing [FLUX]
(migrated from CivitAI, author dobrosketchkun )
<Gallery />
Model description
<p>Intentionally bad MS Paint-styled images.</p>
Trigger words
You should use MSPaint portrait, MSPaint drawing to trigger the image generation.
Download model
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
Use it with the 🧨 diffusers library
from diffusers import AutoPipelineForText2Image
import torch
device = "cuda" if torch.cuda.is_available() else "cpu"
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
pipeline.load_lora_weights('multimodalart/ms-paint-drawing-flux', weight_name='ms_paint_flux_lora_aitoolkit_000003000.safetensors')
image = pipeline('MSPaint portrait , MSPaint drawing, A captivating dark fantasy scene featuring a colossal, intricately carved face on a mountain. The mountain's hollow eyes gaze into the distance, while its open mouth reveals a dark and mysterious path. A solitary cloaked figure stands atop the mountain, holding a mysterious staff that seems to resonate with the surrounding energy. The remnants of a once-great civilization lie scattered at the foot of the mountain, adding to the sense of wonder and intrigue. The fiery orange and red sky creates a breathtaking backdrop, hinting at either a stunning sunset or a cataclysmic event.
').images[0]For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers
