multimodalart HF staff commited on
Commit
daa5df9
1 Parent(s): cc227d2

Upload folder using huggingface_hub

Browse files
Files changed (12) hide show
  1. 3339618.jpeg +0 -0
  2. 3339619.jpeg +0 -0
  3. 3339621.jpeg +0 -0
  4. 3339622.jpeg +0 -0
  5. 3339623.jpeg +0 -0
  6. 3339625.jpeg +0 -0
  7. 3339626.jpeg +0 -0
  8. 3339627.jpeg +0 -0
  9. 3339632.jpeg +0 -0
  10. 3339633.jpeg +0 -0
  11. README.md +97 -0
  12. zhibi-sdxl.safetensors +3 -0
3339618.jpeg ADDED
3339619.jpeg ADDED
3339621.jpeg ADDED
3339622.jpeg ADDED
3339623.jpeg ADDED
3339625.jpeg ADDED
3339626.jpeg ADDED
3339627.jpeg ADDED
3339632.jpeg ADDED
3339633.jpeg ADDED
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: bespoke-lora-trained-license
4
+ license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Sell&allowDerivatives=True&allowDifferentLicense=True
5
+ tags:
6
+ - text-to-image
7
+ - stable-diffusion
8
+ - lora
9
+ - diffusers
10
+ - template:sd-lora
11
+ - animals
12
+ - style
13
+ - cute
14
+ - styles
15
+ - smol face
16
+
17
+ base_model: stabilityai/stable-diffusion-xl-base-1.0
18
+ instance_prompt: zhibi
19
+ widget:
20
+ - text: 'zhibi, chibi, animal spider, small spider, chibi spider, cute happy spider, sitting in a spiderweb '
21
+ output:
22
+ url: >-
23
+ 3339633.jpeg
24
+ - text: 'zhibi, chibi, seal, small seal, chibi seal, cute, on the beach '
25
+ output:
26
+ url: >-
27
+ 3339632.jpeg
28
+ - text: 'zhibi, chibi, cow, small cow, chibi cow, cute, on a farm, eating grass, in the alps, sun going down on the horizont '
29
+ output:
30
+ url: >-
31
+ 3339618.jpeg
32
+ - text: 'zhibi, chibi, cow, small cow, chibi cow, cute, on a farm, eating grass, in the alps, sun going down on the horizont '
33
+ output:
34
+ url: >-
35
+ 3339619.jpeg
36
+ - text: 'zhibi, chibi, parrot, small parrot, chibi parrot, cute, sitting on a finger, wild rain forrest background '
37
+ output:
38
+ url: >-
39
+ 3339623.jpeg
40
+ - text: 'zhibi, chibi, parrot, small parrot, chibi parrot, cute, sitting on a finger, wild rain forrest background '
41
+ output:
42
+ url: >-
43
+ 3339627.jpeg
44
+ - text: 'zhibi, chibi, cat, small cat, chibi cat, cute, with red ball of wool '
45
+ output:
46
+ url: >-
47
+ 3339626.jpeg
48
+ - text: 'zhibi, chibi, cat, small cat, chibi cat, cute, with red big ball of wool '
49
+ output:
50
+ url: >-
51
+ 3339622.jpeg
52
+ - text: 'zhibi, chibi, mouse, small mouse, chibi mouse, cute, munching on a way too big cheese '
53
+ output:
54
+ url: >-
55
+ 3339621.jpeg
56
+ - text: 'zhibi, chibi, mouse, small mouse, chibi mouse, cute, munching on a way too big cheese '
57
+ output:
58
+ url: >-
59
+ 3339625.jpeg
60
+
61
+ ---
62
+
63
+ # Smol Animals [SDXL LoRA]
64
+
65
+ <Gallery />
66
+
67
+
68
+
69
+ ([CivitAI](https://civitai.com/models/186716))
70
+
71
+ ## Model description
72
+
73
+ <p><u>SDXL:<br /></u><span style="color:rgb(193, 194, 197)">Trigger word: </span><strong><span style="color:rgb(193, 194, 197)">zhibi</span></strong><br /><span style="color:rgb(193, 194, 197)">Sampling Method: </span><strong><span style="color:rgb(219, 222, 225)">DPM++ 2M SDE Karras</span></strong><br /><br />☕ Buy me a coffee: <a target="_blank" rel="ugc" href="https://ko-fi.com/ralfingerai">https://ko-fi.com/ralfingerai</a></p>
74
+
75
+ ## Trigger words
76
+ You should use `zhibi` to trigger the image generation.
77
+
78
+
79
+ ## Download model
80
+
81
+ Weights for this model are available in Safetensors format.
82
+
83
+ [Download](/RalFinger/smol-animals-sdxl-lora/tree/main) them in the Files & versions tab.
84
+
85
+ ## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
86
+
87
+ ```py
88
+ from diffusers import AutoPipelineForText2Image
89
+ import torch
90
+
91
+ pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
92
+ pipeline.load_lora_weights('RalFinger/smol-animals-sdxl-lora', weight_name='zhibi-sdxl.safetensors')
93
+ image = pipeline('zhibi, chibi, mouse, small mouse, chibi mouse, cute, munching on a way too big cheese ').images[0]
94
+ ```
95
+
96
+ 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)
97
+
zhibi-sdxl.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16d11d894aeae97f89ff122148d47e92ec8f9919d39d55d422e2bd7edbb12122
3
+ size 228452868