Akimitsujiro
commited on
Commit
•
0f9cff5
1
Parent(s):
fea749d
Upload folder using huggingface_hub
Browse files- 6654741.jpeg +0 -0
- FurSho.safetensors +3 -0
- README.md +61 -0
6654741.jpeg
ADDED
FurSho.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9ff8b79f1b77da885e735926f89360d3a55cefea80710978342901bd33dca251
|
3 |
+
size 39078976
|
README.md
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
- style
|
13 |
+
- furry
|
14 |
+
- male
|
15 |
+
|
16 |
+
base_model: runwayml/stable-diffusion-v1-5
|
17 |
+
instance_prompt: Furry
|
18 |
+
widget:
|
19 |
+
- text: ' '
|
20 |
+
|
21 |
+
output:
|
22 |
+
url: >-
|
23 |
+
6654741.jpeg
|
24 |
+
|
25 |
+
---
|
26 |
+
|
27 |
+
# FurryShota
|
28 |
+
|
29 |
+
<Gallery />
|
30 |
+
|
31 |
+
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
## Model description
|
36 |
+
|
37 |
+
<p>About me: <a target="_blank" rel="ugc" href="https://potofu.me/akimitsujiro">https://potofu.me/akimitsujiro</a></p><p>Download model: <a target="_blank" rel="ugc" href="https://huggingface.co/Akimitsujiro/FurSho">https://huggingface.co/Akimitsujiro/FurSho</a></p>
|
38 |
+
|
39 |
+
## Trigger words
|
40 |
+
You should use `Furry`, `Male` to trigger the image generation.
|
41 |
+
|
42 |
+
|
43 |
+
## Download model
|
44 |
+
|
45 |
+
Weights for this model are available in Safetensors format.
|
46 |
+
|
47 |
+
[Download](/Akimitsujiro/furryshota/tree/main) them in the Files & versions tab.
|
48 |
+
|
49 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
50 |
+
|
51 |
+
```py
|
52 |
+
from diffusers import AutoPipelineForText2Image
|
53 |
+
import torch
|
54 |
+
|
55 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
|
56 |
+
pipeline.load_lora_weights('Akimitsujiro/furryshota', weight_name='FurSho.safetensors')
|
57 |
+
image = pipeline('`Furry`, `Male`').images[0]
|
58 |
+
```
|
59 |
+
|
60 |
+
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)
|
61 |
+
|