metadata
license: other
license_name: bespoke-lora-trained-license
license_link: >-
https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=False
tags:
- 3d render
- animated
- animation
- cartoon
- claymation
- comic
- diffusers
- lora
- migrated
- render
- stable-diffusion
- style
- template:sd-lora
- text-to-image
- toon
base_model: black-forest-labs/FLUX.1-dev
instance_prompt: w1z_r3nd3r
widget:
- text: 'w1z_r3nd3r. working as janitor in Babylon. a lemon with a face. '
output:
url: 65868627.jpeg
- text: >-
w1z_r3nd3r. a pig in heavy makeup, is wearing a crop top and yoga pants.
She is shopping for groceries in the meat section of a Walmart, holding a
bacon package that reads "PEPPA'S PRIME BACON" in a large font. Vibrant
colors, and glossy texture, with high gloss.
output:
url: 65868617.jpeg
- text: >-
w1z_r3nd3r. Fat and round head of old Wizard Whitebeard, with a long white
beard. Small body and a large head. Big eyes, and large lips. Reading a
book with the title "STINKY LORAS - A SIMPLE GUIDE".
output:
url: 65868784.jpeg
- text: >-
w1z_r3nd3r. A grumpy slice of lemon with a sour face, standing by a
lemonade stand on the side of the road. The sign reads "TASTE MY JUICE" in
handwritten font
output:
url: 65868681.jpeg
- text: >-
w1z_r3nd3r. A vibrant, 3D render of a vintage Volvo tractor, floating
mid-air. Soft pink background. Glossy texture, with a shiny finish.
Dynamic presentation.
output:
url: 65868689.jpeg
Wizard's Toon Renders

- Prompt
- w1z_r3nd3r. working as janitor in Babylon. a lemon with a face.

- Prompt
- w1z_r3nd3r. a pig in heavy makeup, is wearing a crop top and yoga pants. She is shopping for groceries in the meat section of a Walmart, holding a bacon package that reads "PEPPA'S PRIME BACON" in a large font. Vibrant colors, and glossy texture, with high gloss.

- Prompt
- w1z_r3nd3r. Fat and round head of old Wizard Whitebeard, with a long white beard. Small body and a large head. Big eyes, and large lips. Reading a book with the title "STINKY LORAS - A SIMPLE GUIDE".

- Prompt
- w1z_r3nd3r. A grumpy slice of lemon with a sour face, standing by a lemonade stand on the side of the road. The sign reads "TASTE MY JUICE" in handwritten font

- Prompt
- w1z_r3nd3r. A vibrant, 3D render of a vintage Volvo tractor, floating mid-air. Soft pink background. Glossy texture, with a shiny finish. Dynamic presentation.
Model description
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.
Trigger: w1z_r3nd3r
Recommended settings (feel free to experiment, higher guidance gives better text):
LoRA Strength: 1.0
| Guidance: 3.5 - 5.0
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
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