File size: 3,207 Bytes
4ebd4c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
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 

<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](/WizWhite/wizard-s-toon-renders/tree/main) them in the Files & versions tab.

## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)

```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](https://huggingface.co/docs/diffusers/main/en/using-diffusers/loading_adapters)