Commit
•
ead154d
1
Parent(s):
130f708
Upload folder using huggingface_hub
Browse files- 5870242.jpeg +0 -0
- 5870243.jpeg +0 -0
- 5870245.jpeg +0 -0
- 5870247.jpeg +0 -0
- 5870250.jpeg +0 -0
- BambaBaby.safetensors +3 -0
- README.md +75 -0
5870242.jpeg
ADDED
5870243.jpeg
ADDED
5870245.jpeg
ADDED
5870247.jpeg
ADDED
5870250.jpeg
ADDED
BambaBaby.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:107cb74022979ee154ce526fccab86b8fce042511eb4156999fa5fdc7bc06c2a
|
3 |
+
size 9554576
|
README.md
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Rent&allowDerivatives=True&allowDifferentLicense=False
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- character
|
12 |
+
- baby
|
13 |
+
- bamba
|
14 |
+
|
15 |
+
base_model: runwayml/stable-diffusion-v1-5
|
16 |
+
instance_prompt: BambaBaby
|
17 |
+
widget:
|
18 |
+
- text: 'A professional photo of BambaBaby Dancing in the streets of new-york '
|
19 |
+
output:
|
20 |
+
url: >-
|
21 |
+
5870247.jpeg
|
22 |
+
- text: 'A photo of a BambaBaby sitting at a pub with a glass of milk in front of him '
|
23 |
+
output:
|
24 |
+
url: >-
|
25 |
+
5870250.jpeg
|
26 |
+
- text: 'A professional shot of a BambaBaby surfing in the ocean '
|
27 |
+
output:
|
28 |
+
url: >-
|
29 |
+
5870243.jpeg
|
30 |
+
- text: 'A full body shot of a wooden BambaBaby Pinocchio puppet '
|
31 |
+
output:
|
32 |
+
url: >-
|
33 |
+
5870242.jpeg
|
34 |
+
- text: 'A cute album-cover photo of BambaBaby smoking a joint next to a cannabis plant '
|
35 |
+
output:
|
36 |
+
url: >-
|
37 |
+
5870245.jpeg
|
38 |
+
|
39 |
+
---
|
40 |
+
|
41 |
+
# BambaBaby
|
42 |
+
|
43 |
+
<Gallery />
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
([CivitAI](https://civitai.com/models/277078))
|
48 |
+
|
49 |
+
## Model description
|
50 |
+
|
51 |
+
<p>An SD v1.5 LoRA of the Baby Bamba mascot, which advertises Bamba </p><p>Bamba is a snack made of peanut-butter-flavored puffed maize manufactured by the Osem corporation.</p><p></p><p>Use <em>BambaBaby</em> in your prompts to refer to this character</p>
|
52 |
+
|
53 |
+
## Trigger words
|
54 |
+
You should use `BambaBaby` to trigger the image generation.
|
55 |
+
|
56 |
+
|
57 |
+
## Download model
|
58 |
+
|
59 |
+
Weights for this model are available in Safetensors format.
|
60 |
+
|
61 |
+
[Download](/Norod78/bambababy/tree/main) them in the Files & versions tab.
|
62 |
+
|
63 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
64 |
+
|
65 |
+
```py
|
66 |
+
from diffusers import AutoPipelineForText2Image
|
67 |
+
import torch
|
68 |
+
|
69 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('runwayml/stable-diffusion-v1-5', torch_dtype=torch.float16).to('cuda')
|
70 |
+
pipeline.load_lora_weights('Norod78/bambababy', weight_name='BambaBaby.safetensors')
|
71 |
+
image = pipeline('A cute album-cover photo of BambaBaby smoking a joint next to a cannabis plant ').images[0]
|
72 |
+
```
|
73 |
+
|
74 |
+
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)
|
75 |
+
|