brushpenbob
commited on
Commit
•
a8f55a6
1
Parent(s):
e637a19
Upload folder using huggingface_hub
Browse files- 9890485.jpeg +0 -0
- 9890486.jpeg +0 -0
- 9890487.jpeg +0 -0
- 9894810.jpeg +0 -0
- 9894811.jpeg +0 -0
- 9896071.jpeg +0 -0
- Cartoon_cars-000018.safetensors +3 -0
- README.md +87 -0
9890485.jpeg
ADDED
9890486.jpeg
ADDED
9890487.jpeg
ADDED
9894810.jpeg
ADDED
9894811.jpeg
ADDED
9896071.jpeg
ADDED
Cartoon_cars-000018.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0ab9e008f9d02cd07d2e97b98ba0a7c214997bfdcf98caaa3cf63c54136f5a38
|
3 |
+
size 37867800
|
README.md
ADDED
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
- cartoon
|
14 |
+
- sketch
|
15 |
+
- traditional art
|
16 |
+
- the protoart
|
17 |
+
- toon_cars
|
18 |
+
|
19 |
+
base_model: runwayml/stable-diffusion-v1-5
|
20 |
+
instance_prompt:
|
21 |
+
widget:
|
22 |
+
- text: ' '
|
23 |
+
|
24 |
+
output:
|
25 |
+
url: >-
|
26 |
+
9894810.jpeg
|
27 |
+
- text: ' '
|
28 |
+
|
29 |
+
output:
|
30 |
+
url: >-
|
31 |
+
9896071.jpeg
|
32 |
+
- text: ' '
|
33 |
+
|
34 |
+
output:
|
35 |
+
url: >-
|
36 |
+
9894811.jpeg
|
37 |
+
- text: ' '
|
38 |
+
|
39 |
+
output:
|
40 |
+
url: >-
|
41 |
+
9890487.jpeg
|
42 |
+
- text: ' '
|
43 |
+
|
44 |
+
output:
|
45 |
+
url: >-
|
46 |
+
9890486.jpeg
|
47 |
+
- text: ' '
|
48 |
+
|
49 |
+
output:
|
50 |
+
url: >-
|
51 |
+
9890485.jpeg
|
52 |
+
|
53 |
+
---
|
54 |
+
|
55 |
+
# Cartoon_cars
|
56 |
+
|
57 |
+
<Gallery />
|
58 |
+
|
59 |
+
|
60 |
+
|
61 |
+
|
62 |
+
|
63 |
+
## Model description
|
64 |
+
|
65 |
+
<p>This model was designed based off of cartoon illustrations of vehicles, predominantly cars</p>
|
66 |
+
|
67 |
+
|
68 |
+
|
69 |
+
## Download model
|
70 |
+
|
71 |
+
Weights for this model are available in Safetensors format.
|
72 |
+
|
73 |
+
[Download](/brushpenbob/cartoon-cars/tree/main) them in the Files & versions tab.
|
74 |
+
|
75 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
76 |
+
|
77 |
+
```py
|
78 |
+
from diffusers import AutoPipelineForText2Image
|
79 |
+
import torch
|
80 |
+
|
81 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
|
82 |
+
pipeline.load_lora_weights('brushpenbob/cartoon-cars', weight_name='Cartoon_cars-000018.safetensors')
|
83 |
+
image = pipeline('Your custom prompt').images[0]
|
84 |
+
```
|
85 |
+
|
86 |
+
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)
|
87 |
+
|