Upload folder using huggingface_hub
Browse files- 22596600.jpeg +0 -0
- 22596602.jpeg +0 -0
- 22596615.jpeg +0 -0
- Life_FX.safetensors +3 -0
- README.md +72 -0
22596600.jpeg
ADDED
22596602.jpeg
ADDED
22596615.jpeg
ADDED
Life_FX.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:770de5c5e299dfabf0b43826dd852a4fd3654988fda2ba6419a037907df56b9c
|
3 |
+
size 228491548
|
README.md
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: other
|
3 |
+
license_name: bespoke-lora-trained-license
|
4 |
+
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=False&allowCommercialUse=RentCivit&allowDerivatives=True&allowDifferentLicense=False
|
5 |
+
tags:
|
6 |
+
- text-to-image
|
7 |
+
- stable-diffusion
|
8 |
+
- lora
|
9 |
+
- diffusers
|
10 |
+
- template:sd-lora
|
11 |
+
- migrated
|
12 |
+
- photorealistic
|
13 |
+
- realism
|
14 |
+
- style
|
15 |
+
- artistic
|
16 |
+
- realistic
|
17 |
+
- sdxl vae
|
18 |
+
|
19 |
+
base_model: stabilityai/stable-diffusion-xl-base-1.0
|
20 |
+
instance_prompt:
|
21 |
+
widget:
|
22 |
+
- text: ' '
|
23 |
+
|
24 |
+
output:
|
25 |
+
url: >-
|
26 |
+
22596602.jpeg
|
27 |
+
- text: ' '
|
28 |
+
|
29 |
+
output:
|
30 |
+
url: >-
|
31 |
+
22596615.jpeg
|
32 |
+
- text: ' '
|
33 |
+
|
34 |
+
output:
|
35 |
+
url: >-
|
36 |
+
22596600.jpeg
|
37 |
+
|
38 |
+
---
|
39 |
+
|
40 |
+
# Life FX
|
41 |
+
|
42 |
+
<Gallery />
|
43 |
+
|
44 |
+
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
## Model description
|
49 |
+
|
50 |
+
<p><span>Life FX is a LoRA model trained on a diverse set of images emphasizing vivid colors, strong compositions, and a touch of the surreal. It excels at generating images with the following qualities:</span></p><ul><li><p><strong><span>Bold Color Palettes:</span></strong><span> Expect vibrant, often unexpected, color combinations. Think deep blues against bright oranges, coral pinks with water lilies, or the stark contrast of a black and white winter scene.</span></p></li><li><p><strong><span>Emphasis on Texture:</span></strong><span> "Life FX" is particularly adept at rendering textures, whether it's the smooth leather of a vintage car, the rough surface of weathered rock, or the delicate veins of a flower petal.</span></p></li><li><p><strong><span>Playful Surrealism:</span></strong><span> While grounded in realism, the model isn't afraid to introduce subtle surreal elements, like a glowing portal in a rock formation or a belt playfully restraining a croissant. This adds a layer of whimsy and the unexpected to its creations.</span></p></li><li><p><strong><span>Strong Compositions:</span></strong><span> Expect well-defined subjects, balanced arrangements, and a clear focal point in each generated image. "Life FX" understands how to direct the viewer's eye within the frame.</span></p></li><li><p><strong><span>Eclectic Subject Matter:</span></strong><span> The model is capable of tackling a range of subjects, from natural landscapes and floral close-ups to architectural details and everyday objects.</span></p></li></ul>
|
51 |
+
|
52 |
+
|
53 |
+
|
54 |
+
## Download model
|
55 |
+
|
56 |
+
Weights for this model are available in Safetensors format.
|
57 |
+
|
58 |
+
[Download](/Tech-Meld/life-fx/tree/main) them in the Files & versions tab.
|
59 |
+
|
60 |
+
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers)
|
61 |
+
|
62 |
+
```py
|
63 |
+
from diffusers import AutoPipelineForText2Image
|
64 |
+
import torch
|
65 |
+
|
66 |
+
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda')
|
67 |
+
pipeline.load_lora_weights('Tech-Meld/life-fx', weight_name='Life_FX.safetensors')
|
68 |
+
image = pipeline('Your custom prompt').images[0]
|
69 |
+
```
|
70 |
+
|
71 |
+
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)
|
72 |
+
|