Commit
•
1ad9625
1
Parent(s):
4fb4f92
Upload folder using huggingface_hub
Browse files- 3328637.jpeg +0 -0
- 3328638.jpeg +0 -0
- 3328734.jpeg +0 -0
- 3328796.jpeg +0 -0
- 3328917.jpeg +0 -0
- 3329095.jpeg +0 -0
- DD-toy-v2.safetensors +3 -0
- README.md +82 -0
3328637.jpeg
ADDED
3328638.jpeg
ADDED
3328734.jpeg
ADDED
3328796.jpeg
ADDED
3328917.jpeg
ADDED
3329095.jpeg
ADDED
DD-toy-v2.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:63e4fa0af8faa45f332cd69823d2b0480696f318b2cf7beb834590a118141559
|
3 |
+
size 228451620
|
README.md
ADDED
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Rent&allowDerivatives=True&allowDifferentLicense=False
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- concept
|
12 |
+
- action figure
|
13 |
+
- figure
|
14 |
+
- toy
|
15 |
+
- concpet
|
16 |
+
- xl lora
|
17 |
+
|
18 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
19 |
+
instance_prompt: toy
|
20 |
+
widget:
|
21 |
+
- text: ' toy, photo George w bush mission accomplished'
|
22 |
+
output:
|
23 |
+
url: >-
|
24 |
+
3328637.jpeg
|
25 |
+
- text: ' toy fall autumn pepe'
|
26 |
+
output:
|
27 |
+
url: >-
|
28 |
+
3328917.jpeg
|
29 |
+
- text: ' toy, photo goku on a skateboard,'
|
30 |
+
output:
|
31 |
+
url: >-
|
32 |
+
3328638.jpeg
|
33 |
+
- text: ' toy bill Clinton Saxaphone'
|
34 |
+
output:
|
35 |
+
url: >-
|
36 |
+
3329095.jpeg
|
37 |
+
- text: ' toy dogs playing poker'
|
38 |
+
output:
|
39 |
+
url: >-
|
40 |
+
3328796.jpeg
|
41 |
+
- text: ' toy photo nicolas cage car'
|
42 |
+
output:
|
43 |
+
url: >-
|
44 |
+
3328734.jpeg
|
45 |
+
|
46 |
+
---
|
47 |
+
|
48 |
+
# Doctor Diffusion's Toy XL Style LoRA
|
49 |
+
|
50 |
+
<Gallery />
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
## Model description
|
57 |
+
|
58 |
+
<p>Use "<strong>toy</strong>" in prompt.<br /><br /><span style="color:rgb(17, 17, 17)">☕ </span>Like what I do? <span style="color:rgb(17, 17, 17)">☕</span><br /><span style="color:rgb(17, 17, 17)">☕ </span><a target="_blank" rel="ugc" href="https://www.buymeacoffee.com/doctordiffusion">Buy me a coffee or two</a>! <span style="color:rgb(17, 17, 17)">☕</span></p>
|
59 |
+
|
60 |
+
## Trigger words
|
61 |
+
You should use `toy`, `photo` to trigger the image generation.
|
62 |
+
|
63 |
+
|
64 |
+
## Download model
|
65 |
+
|
66 |
+
Weights for this model are available in Safetensors format.
|
67 |
+
|
68 |
+
[Download](/DoctorDiffusion/doctor-diffusion-s-toy-xl-style-lora/tree/main) them in the Files & versions tab.
|
69 |
+
|
70 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
71 |
+
|
72 |
+
```py
|
73 |
+
from diffusers import AutoPipelineForText2Image
|
74 |
+
import torch
|
75 |
+
|
76 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
|
77 |
+
pipeline.load_lora_weights('DoctorDiffusion/doctor-diffusion-s-toy-xl-style-lora', weight_name='DD-toy-v2.safetensors')
|
78 |
+
image = pipeline(' toy photo nicolas cage car').images[0]
|
79 |
+
```
|
80 |
+
|
81 |
+
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)
|
82 |
+
|