Akimitsujiro
commited on
Commit
•
b755f44
1
Parent(s):
f775a80
Upload folder using huggingface_hub
Browse files- 8602176.jpeg +3 -0
- NijiLoRA v3.0 V6.safetensors +3 -0
- README.md +49 -17
8602176.jpeg
ADDED
Git LFS Details
|
NijiLoRA v3.0 V6.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6b1e4dec77285cd0f5a7c8ccdf4f4df40d49da9b47c6907aff3d9b3672b39458
|
3 |
+
size 39078976
|
README.md
CHANGED
@@ -1,32 +1,64 @@
|
|
1 |
---
|
|
|
|
|
|
|
2 |
tags:
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
widget:
|
9 |
-
- text:
|
10 |
-
|
11 |
-
bara, pectorals, colored_skin, furry_male, abs, white_hair, pauldrons,
|
12 |
-
furry, armor, full_body, minotaur, navel, standing, pants, large_pectorals,
|
13 |
-
blue_skin, nipples, jewelry, embers, cow_ears, tail, bare_pectorals,
|
14 |
-
baggy_pants, looking_at_viewer, petals, animal_ears, necklace, cow_horns,
|
15 |
-
long_hair
|
16 |
output:
|
17 |
-
url:
|
18 |
-
|
19 |
-
instance_prompt: null
|
20 |
|
21 |
---
|
22 |
-
|
|
|
23 |
|
24 |
<Gallery />
|
25 |
|
26 |
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
## Download model
|
29 |
|
30 |
Weights for this model are available in Safetensors format.
|
31 |
|
32 |
-
[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 |
+
- anime
|
13 |
+
- photorealistic
|
14 |
+
- niji
|
15 |
+
- muscular male
|
16 |
+
- style
|
17 |
+
- nijiv5
|
18 |
+
|
19 |
+
base_model: runwayml/stable-diffusion-v1-5
|
20 |
+
instance_prompt: boy
|
21 |
widget:
|
22 |
+
- text: ' '
|
23 |
+
|
|
|
|
|
|
|
|
|
|
|
24 |
output:
|
25 |
+
url: >-
|
26 |
+
8602176.jpeg
|
|
|
27 |
|
28 |
---
|
29 |
+
|
30 |
+
# NijiLora
|
31 |
|
32 |
<Gallery />
|
33 |
|
34 |
|
35 |
|
36 |
+
|
37 |
+
|
38 |
+
## Model description
|
39 |
+
|
40 |
+
<p><a target="_blank" rel="ugc" href="https://huggingface.co/Akimitsujiro/NijiV5LoRA">https://huggingface.co/Akimitsujiro/NijiV5LoRA</a></p>
|
41 |
+
|
42 |
+
## Trigger words
|
43 |
+
You should use `boy`, `niji` to trigger the image generation.
|
44 |
+
|
45 |
+
|
46 |
## Download model
|
47 |
|
48 |
Weights for this model are available in Safetensors format.
|
49 |
|
50 |
+
[Download](/Akimitsujiro/nijilora/tree/main) them in the Files & versions tab.
|
51 |
+
|
52 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
53 |
+
|
54 |
+
```py
|
55 |
+
from diffusers import AutoPipelineForText2Image
|
56 |
+
import torch
|
57 |
+
|
58 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
|
59 |
+
pipeline.load_lora_weights('Akimitsujiro/nijilora', weight_name='NijiLoRA v3.0 V6.safetensors')
|
60 |
+
image = pipeline('`boy`, `niji`').images[0]
|
61 |
+
```
|
62 |
+
|
63 |
+
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)
|
64 |
+
|