This lora is pretty good when transferring the style to an image with the same seed.. See example. Also keep in mind this is experimental and will most likely be improved so please follow me or bookmark this page so you can check back.
Use my prompts in my images as samples. The trigger word is r0b3rt_crum8
I use
SwarmUI for 95% of my image generations and encourage you to try it out! Here's the link to the OFFICAL
GitHub repo and also checkout this install video from Kleebz Tech AI to get you started!
Weights for this model are available in Safetensors format.
Download them in the Files & versions tab.
1from diffusers import AutoPipelineForText2Image
2import torch
3
4device = "cuda" if torch.cuda.is_available() else "cpu"
5
6pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to(device)
7pipeline.load_lora_weights('SouthbayJay/underground-comix-style-flux-robert-crumb', weight_name='robert_crumb_flux_v1.safetensors')
8image = pipeline('a spooky illustration of a scarecrow, in the style of r0b3rt_crum8').images[0]
For more details, including weighting, merging and fusing LoRAs, check the
documentation on loading LoRAs in diffusers