Upload folder using huggingface_hub
Browse files- 7381798.jpeg +3 -0
- 7381799.jpeg +3 -0
- README.md +46 -10
7381798.jpeg
ADDED
Git LFS Details
|
7381799.jpeg
ADDED
Git LFS Details
|
README.md
CHANGED
@@ -1,26 +1,62 @@
|
|
1 |
---
|
|
|
|
|
|
|
2 |
tags:
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
8 |
widget:
|
9 |
-
- text: '
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
output:
|
11 |
-
url:
|
12 |
-
|
13 |
-
instance_prompt: null
|
14 |
|
15 |
---
|
16 |
-
|
|
|
17 |
|
18 |
<Gallery />
|
19 |
|
20 |
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
## Download model
|
23 |
|
24 |
Weights for this model are available in Safetensors format.
|
25 |
|
26 |
[Download](/dfrer/nanasa/tree/main) them in the Files & versions tab.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Sell&allowDerivatives=True&allowDifferentLicense=True
|
5 |
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- migrated
|
12 |
+
- style
|
13 |
+
|
14 |
+
base_model: stabilityai/stable-diffusion-2-1-base
|
15 |
+
instance_prompt:
|
16 |
widget:
|
17 |
+
- text: 'Man sleeping next to clock'
|
18 |
+
|
19 |
+
output:
|
20 |
+
url: >-
|
21 |
+
7381798.jpeg
|
22 |
+
- text: 'Lady death'
|
23 |
+
|
24 |
output:
|
25 |
+
url: >-
|
26 |
+
7381799.jpeg
|
|
|
27 |
|
28 |
---
|
29 |
+
|
30 |
+
# nanasa
|
31 |
|
32 |
<Gallery />
|
33 |
|
34 |
|
35 |
|
36 |
+
|
37 |
+
|
38 |
+
## Model description
|
39 |
+
|
40 |
+
<p>Model based on my personal artwork for experimentation.</p>
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
## Download model
|
45 |
|
46 |
Weights for this model are available in Safetensors format.
|
47 |
|
48 |
[Download](/dfrer/nanasa/tree/main) them in the Files & versions tab.
|
49 |
+
|
50 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
51 |
+
|
52 |
+
```py
|
53 |
+
from diffusers import AutoPipelineForText2Image
|
54 |
+
import torch
|
55 |
+
|
56 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-2-1-base', torch_dtype=torch.float16).to('cuda')
|
57 |
+
pipeline.load_lora_weights('dfrer/nanasa', weight_name='nanasa-000009.safetensors')
|
58 |
+
image = pipeline('Lady death').images[0]
|
59 |
+
```
|
60 |
+
|
61 |
+
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)
|
62 |
+
|