Update README.md
Browse files
README.md
CHANGED
@@ -12,7 +12,7 @@ There are many possible toggles and many variations for this shunt to be used.
|
|
12 |
The only one I hooked up is the basic tool meant for simple text encoder guidance, then I shunted it into clip_embeds for a test.
|
13 |
|
14 |
|
15 |
-
Drag and drop into colab and generate some sdxl images with it.
|
16 |
|
17 |
Fiddle with the taps and mess with the settings to add additional or reduce guidance from the T5-small variations with your clip_l.
|
18 |
|
@@ -181,9 +181,11 @@ config = {
|
|
181 |
|
182 |
|
183 |
gen = torch.Generator(device="cuda").manual_seed(420)
|
|
|
184 |
|
|
|
185 |
|
186 |
-
|
187 |
strength = 0
|
188 |
|
189 |
# the working version that can't be omitted,
|
|
|
12 |
The only one I hooked up is the basic tool meant for simple text encoder guidance, then I shunted it into clip_embeds for a test.
|
13 |
|
14 |
|
15 |
+
Drag and drop into colab and generate some sdxl images with it. Two nodes; one above the generator
|
16 |
|
17 |
Fiddle with the taps and mess with the settings to add additional or reduce guidance from the T5-small variations with your clip_l.
|
18 |
|
|
|
181 |
|
182 |
|
183 |
gen = torch.Generator(device="cuda").manual_seed(420)
|
184 |
+
```
|
185 |
|
186 |
+
Place this on another node so you don't reload over and over.
|
187 |
|
188 |
+
```
|
189 |
strength = 0
|
190 |
|
191 |
# the working version that can't be omitted,
|