CoolFace
Modelpublic

WizWhite/wizard-s-toon-renders

sourceHugging Faceotherupdated 1y agoView on Hugging Face
0likes21downloads
Model Card

Wizard's Toon Renders

<Gallery />

Model description

<p>Great for cartoonish / claymation-ish characters and objects. Majority of the training images has empty background, so you might want to specify the setting if you want one.</p><p><span style="color:rgb(193, 194, 197)">Trigger: </span><code>w1z_r3nd3r</code></p><p><span style="color:rgb(193, 194, 197)">Recommended settings (feel free to experiment, higher guidance gives better text): </span><br /><span style="color:rgb(193, 194, 197)">LoRA Strength: </span><code>1.0</code><span style="color:rgb(193, 194, 197)"> | Guidance: </span><code>3.5 - 5.0</code></p>

Trigger words

You should use w1z_r3nd3r to trigger the 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)
pipe.load_lora_weights('WizWhite/wizard-s-toon-renders', weight_name='w1z-r3nd3r.safetensors')
image = pipeline('w1z_r3nd3r. working as janitor in Babylon. a lemon with a face.
').images[0]

For more details, including weighting, merging and fusing LoRAs, check the documentation on loading LoRAs in diffusers