brushpenbob
commited on
Commit
•
f066f57
1
Parent(s):
e6d06fc
Upload folder using huggingface_hub
Browse files- 5058211.jpeg +0 -0
- 5058212.jpeg +0 -0
- Graffiti_tattoo-000005.safetensors +3 -0
- README.md +64 -0
5058211.jpeg
ADDED
5058212.jpeg
ADDED
Graffiti_tattoo-000005.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ee1b2d39760943c7afe7c4c744d41ac707675d8169bb13351c99817a4a71cfc6
|
3 |
+
size 37871624
|
README.md
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=False&allowCommercialUse=1&allowDerivatives=True&allowDifferentLicense=False
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- migrated
|
12 |
+
- graffiti
|
13 |
+
- style
|
14 |
+
- tattoo
|
15 |
+
|
16 |
+
base_model: runwayml/stable-diffusion-v1-5
|
17 |
+
instance_prompt:
|
18 |
+
widget:
|
19 |
+
- text: ' '
|
20 |
+
|
21 |
+
output:
|
22 |
+
url: >-
|
23 |
+
5058212.jpeg
|
24 |
+
- text: ' '
|
25 |
+
|
26 |
+
output:
|
27 |
+
url: >-
|
28 |
+
5058211.jpeg
|
29 |
+
|
30 |
+
---
|
31 |
+
|
32 |
+
# Graffiti tattoo
|
33 |
+
|
34 |
+
<Gallery />
|
35 |
+
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
|
40 |
+
## Model description
|
41 |
+
|
42 |
+
<p>This was an interesting experience, using civet AI to try to train a LoRa model. It's meant to pair with tattoo and graffiti art styles.</p>
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
## Download model
|
47 |
+
|
48 |
+
Weights for this model are available in Safetensors format.
|
49 |
+
|
50 |
+
[Download](/brushpenbob/graffiti-tattoo/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('brushpenbob/graffiti-tattoo', weight_name='Graffiti_tattoo-000005.safetensors')
|
60 |
+
image = pipeline('Your custom prompt').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 |
+
|