Akimitsujiro
commited on
Commit
•
1b07442
1
Parent(s):
b8187f0
Upload folder using huggingface_hub
Browse files- 9427122.jpeg +3 -0
- 9427123.jpeg +3 -0
- README.md +46 -17
9427122.jpeg
ADDED
Git LFS Details
|
9427123.jpeg
ADDED
Git LFS Details
|
README.md
CHANGED
@@ -1,38 +1,67 @@
|
|
1 |
---
|
|
|
|
|
|
|
2 |
tags:
|
3 |
- text-to-image
|
4 |
- stable-diffusion
|
5 |
- lora
|
6 |
- diffusers
|
7 |
- template:sd-lora
|
8 |
-
|
9 |
-
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
parameters:
|
15 |
-
negative_prompt: >-
|
16 |
-
worst quality, large head, low quality, extra digits, bad eye,
|
17 |
-
EasyNegativeV2, ng_deepnegative_v1_75t
|
18 |
-
output:
|
19 |
-
url: images/1000092456.webp
|
20 |
base_model: runwayml/stable-diffusion-v1-5
|
21 |
instance_prompt: 1boy
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
---
|
24 |
-
|
|
|
25 |
|
26 |
<Gallery />
|
27 |
|
28 |
|
29 |
-
## Trigger words
|
30 |
|
31 |
-
You should use `1boy` to trigger the image generation.
|
32 |
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
## Download model
|
35 |
|
36 |
Weights for this model are available in Safetensors format.
|
37 |
|
38 |
-
[Download](/Akimitsujiro/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Image&allowDerivatives=True&allowDifferentLicense=True
|
5 |
tags:
|
6 |
- text-to-image
|
7 |
- stable-diffusion
|
8 |
- lora
|
9 |
- diffusers
|
10 |
- template:sd-lora
|
11 |
+
- migrated
|
12 |
+
- character
|
13 |
+
- genshin impact
|
14 |
+
- male
|
15 |
+
- dottore
|
16 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
base_model: runwayml/stable-diffusion-v1-5
|
18 |
instance_prompt: 1boy
|
19 |
+
widget:
|
20 |
+
- text: ' '
|
21 |
+
|
22 |
+
output:
|
23 |
+
url: >-
|
24 |
+
9427122.jpeg
|
25 |
+
- text: ' '
|
26 |
+
|
27 |
+
output:
|
28 |
+
url: >-
|
29 |
+
9427123.jpeg
|
30 |
+
|
31 |
---
|
32 |
+
|
33 |
+
# Dottore ( Genshin Impact)
|
34 |
|
35 |
<Gallery />
|
36 |
|
37 |
|
|
|
38 |
|
|
|
39 |
|
40 |
|
41 |
+
## Model description
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
## Trigger words
|
46 |
+
You should use `1boy`, `Genshin Impact`, `Dottore ` to trigger the image generation.
|
47 |
+
|
48 |
+
|
49 |
## Download model
|
50 |
|
51 |
Weights for this model are available in Safetensors format.
|
52 |
|
53 |
+
[Download](/Akimitsujiro/dottore-genshin-impact/tree/main) them in the Files & versions tab.
|
54 |
+
|
55 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
56 |
+
|
57 |
+
```py
|
58 |
+
from diffusers import AutoPipelineForText2Image
|
59 |
+
import torch
|
60 |
+
|
61 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
|
62 |
+
pipeline.load_lora_weights('Akimitsujiro/dottore-genshin-impact', weight_name='Dottore ( Genshin Impact).safetensors')
|
63 |
+
image = pipeline('`1boy`, `Genshin Impact`, `Dottore `').images[0]
|
64 |
+
```
|
65 |
+
|
66 |
+
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)
|
67 |
+
|