brushpenbob
commited on
Commit
•
472b2c4
1
Parent(s):
6f43523
Upload folder using huggingface_hub
Browse files- 18969895.jpeg +0 -0
- 18969896.jpeg +0 -0
- 18969897.jpeg +0 -0
- Monster_Design_XL_r1.safetensors +3 -0
- README.md +73 -0
18969895.jpeg
ADDED
18969896.jpeg
ADDED
18969897.jpeg
ADDED
Monster_Design_XL_r1.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f41bd6f1675d31998b741c0e7bc55bd2b0a4fcbee77d398f7060830ff9627a93
|
3 |
+
size 228466396
|
README.md
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=False&allowCommercialUse=RentCivit&allowDerivatives=False&allowDifferentLicense=False
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- migrated
|
12 |
+
- skeleton
|
13 |
+
- style
|
14 |
+
- armor
|
15 |
+
- creature
|
16 |
+
- evang
|
17 |
+
|
18 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
19 |
+
instance_prompt: Conceptcharacterstyle
|
20 |
+
widget:
|
21 |
+
- text: ' '
|
22 |
+
|
23 |
+
output:
|
24 |
+
url: >-
|
25 |
+
18969895.jpeg
|
26 |
+
- text: ' '
|
27 |
+
|
28 |
+
output:
|
29 |
+
url: >-
|
30 |
+
18969896.jpeg
|
31 |
+
- text: ' '
|
32 |
+
|
33 |
+
output:
|
34 |
+
url: >-
|
35 |
+
18969897.jpeg
|
36 |
+
|
37 |
+
---
|
38 |
+
|
39 |
+
# Monster Design XL
|
40 |
+
|
41 |
+
<Gallery />
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
## Model description
|
48 |
+
|
49 |
+
<p>What's up everybody!</p><h3 id="retrained-data-set-from-my-1.5-model-this-models-great-for-creating-concept-art-characters-like-skeleton-and-orcs-with-armor.-i-know-creating-brand-new-characters-to-be-challenging-so-this-models-useful-for-getting-you-off-to-a-decent-start!-iyx9dxx0j">Retrained data set from my <a target="_blank" rel="ugc" href="https://civitai.com/models/85364/concept-monster?modelVersionId=147135">1.5 model</a> this models great for <strong>creating concept art characters like skeleton and orcs with armor.</strong> I know creating brand new characters to be challenging so this models useful for getting you off to a decent start!</h3><h3 id="i-encourage-you-to-practice-drawing-with-traditional-art-tools-or-digital-art-itself-and-not-solely-relying-on-the-creation-from-this-model.-eetme6umy">I encourage you to practice drawing with traditional art, tools, or digital art itself, and not solely relying on the creation from this model.</h3><p></p><p>Look forward to seeing your creations, and you art journey</p><p></p><p></p>
|
50 |
+
|
51 |
+
## Trigger words
|
52 |
+
You should use `Conceptcharacterstyle`, `evang` to trigger the image generation.
|
53 |
+
|
54 |
+
|
55 |
+
## Download model
|
56 |
+
|
57 |
+
Weights for this model are available in Safetensors format.
|
58 |
+
|
59 |
+
[Download](/brushpenbob/monster-design-xl/tree/main) them in the Files & versions tab.
|
60 |
+
|
61 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
62 |
+
|
63 |
+
```py
|
64 |
+
from diffusers import AutoPipelineForText2Image
|
65 |
+
import torch
|
66 |
+
|
67 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
|
68 |
+
pipeline.load_lora_weights('brushpenbob/monster-design-xl', weight_name='Monster_Design_XL_r1.safetensors')
|
69 |
+
image = pipeline('`Conceptcharacterstyle`, `evang`').images[0]
|
70 |
+
```
|
71 |
+
|
72 |
+
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)
|
73 |
+
|