brushpenbob
commited on
Commit
•
63c285b
1
Parent(s):
6e2c247
Upload folder using huggingface_hub
Browse files- 6890055.jpeg +0 -0
- 6990145.jpeg +0 -0
- 7926529.jpeg +0 -0
- README.md +71 -0
- side_2024.safetensors +3 -0
6890055.jpeg
ADDED
6990145.jpeg
ADDED
7926529.jpeg
ADDED
README.md
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
- style
|
13 |
+
- comic
|
14 |
+
- side view
|
15 |
+
- pen and ink
|
16 |
+
- profile view
|
17 |
+
|
18 |
+
base_model: runwayml/stable-diffusion-v1-5
|
19 |
+
instance_prompt:
|
20 |
+
widget:
|
21 |
+
- text: ' '
|
22 |
+
|
23 |
+
output:
|
24 |
+
url: >-
|
25 |
+
6890055.jpeg
|
26 |
+
- text: ' '
|
27 |
+
|
28 |
+
output:
|
29 |
+
url: >-
|
30 |
+
7926529.jpeg
|
31 |
+
- text: ' '
|
32 |
+
|
33 |
+
output:
|
34 |
+
url: >-
|
35 |
+
6990145.jpeg
|
36 |
+
|
37 |
+
---
|
38 |
+
|
39 |
+
# side 2024
|
40 |
+
|
41 |
+
<Gallery />
|
42 |
+
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
## Model description
|
48 |
+
|
49 |
+
<h3 id="updated-xl-version-here-0d7p0lxlx">UPDATED XL VERSION HERE</h3><h3 id="https:civitai.commodels565058side-xlmodelversionid629739-xc0fdonvr"><a target="_blank" rel="ugc" href="https://civitai.com/models/565058/side-xl?modelVersionId=629739">https://civitai.com/models/565058/side-xl?modelVersionId=629739</a></h3><div data-youtube-video><iframe width="640" height="480" allowfullscreen="true" autoplay="false" disablekbcontrols="false" enableiframeapi="false" endtime="0" ivloadpolicy="0" loop="false" modestbranding="false" origin playlist src="https://www.youtube.com/embed/QynE0UGQhRs" start="0"></iframe></div><p>This model is trained on a similar date. Is it to the original <a target="_blank" rel="ugc" href="https://civitai.com/models/84286?modelVersionId=225962">1.5 version checkpoint models</a></p><p>Per quest here is an updated LoRa version using an updated data set as well. This model is geared towards those interested in creating <strong>side profile views of characters</strong>. When I first started my art journey it was probably one of the easiest ways to begin drawing and learning how to draw from the side.</p><p></p><h3 id="the-intent-for-this-model-is-to-make-side-profile-images!!-again-i-have-to-emphasize-this-because-that's-what-it's-meant-for-and-there-seem-to-be-confusing-in-the-first-version-lol.-dhdyn5edy">the intent for this model is to make side profile images!! again I have to emphasize this because that's what it's meant for and there seem to be confusing in the first version lol.</h3><p></p><p>Hope you enjoy, and I look forward to seeing your creations in your attorney</p>
|
50 |
+
|
51 |
+
|
52 |
+
|
53 |
+
## Download model
|
54 |
+
|
55 |
+
Weights for this model are available in Safetensors format.
|
56 |
+
|
57 |
+
[Download](/brushpenbob/side-2024/tree/main) them in the Files & versions tab.
|
58 |
+
|
59 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
60 |
+
|
61 |
+
```py
|
62 |
+
from diffusers import AutoPipelineForText2Image
|
63 |
+
import torch
|
64 |
+
|
65 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
|
66 |
+
pipeline.load_lora_weights('brushpenbob/side-2024', weight_name='side_2024.safetensors')
|
67 |
+
image = pipeline('Your custom prompt').images[0]
|
68 |
+
```
|
69 |
+
|
70 |
+
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)
|
71 |
+
|
side_2024.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7b91db4b2a76c8c9b9531a1d2ea268e62ae983da3b228bfff5b5de0fc2b8bb83
|
3 |
+
size 37920440
|