CoolFace
Modelpublic

SouthbayJay/underground-comix-style-flux-robert-crumb

sourceHugging Faceotherupdated 2y agoView on Hugging Face
6likes26downloads
Model Card

Underground Comix Style - Flux - Robert Crumb

<Gallery />

Model description

<p>Underground Comix Style - Inspired by Robert Crumb </p><p><span style="color:rgb(232, 232, 232)">Robert Crumb is an American cartoonist and illustrator known for his distinctive and influential </span><em>underground comix<span style="color:rgb(232, 232, 232)"> style</span></em></p><p>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. </p><p><img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d3a093ad-0a86-4f39-b424-1aad76382d38/width=525/d3a093ad-0a86-4f39-b424-1aad76382d38.jpeg" /></p><p><img src="https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/b6cfbc45-c7f5-4db1-a812-78e475b9273a/width=525/b6cfbc45-c7f5-4db1-a812-78e475b9273a.jpeg" /></p><p>Use my prompts in my images as samples. The trigger word is <strong><em>r0b3rtcrum8</em></strong></p><p></p><p>I use <a target="blank" rel="ugc" href="https://github.com/mcmonkeyprojects/SwarmUI">SwarmUI</a> for 95% of my image generations and encourage you to try it out! Here's the link to the OFFICAL<a target="blank" rel="ugc" href="https://github.com/mcmonkeyprojects/SwarmUI"> GitHub repo </a>and also checkout this install video from Kleebz Tech AI to get you started!</p><div data-youtube-video><iframe width="640" height="480" allowfullscreen="true" autoplay="false" disablekbcontrols="false" enableiframeapi="false" endtime="0" ivloadpolicy="0" loop="false" modestbranding="false" origin playlist src="https://www.youtube.com/embed/vIBTxUZL0Jc?si=nF9xlcBEBGmwlbD" start="0"></iframe></div>

Trigger words

You should use r0b3rt_crum8 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

py
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('SouthbayJay/underground-comix-style-flux-robert-crumb', weight_name='robert_crumb_flux_v1.safetensors')
image = 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