|
--- |
|
license: other |
|
license_name: bespoke-lora-trained-license |
|
license_link: https://multimodal.art/civitai-licenses?allowNoCredit=True&allowCommercialUse=Sell&allowDerivatives=True&allowDifferentLicense=True |
|
tags: |
|
- text-to-image |
|
- stable-diffusion |
|
- lora |
|
- diffusers |
|
- template:sd-lora |
|
- stylized |
|
- expressionism |
|
- style |
|
|
|
base_model: stabilityai/stable-diffusion-xl-base-1.0 |
|
instance_prompt: |
|
widget: |
|
- text: 'oil painting,whimsical,love hotel in a cheerful fantasy sky city edge of the universe, masterpiece' |
|
output: |
|
url: >- |
|
4057782.jpeg |
|
- text: 'cheerful colors,silly,Artificial Recreation Biodomes' |
|
output: |
|
url: >- |
|
4057784.jpeg |
|
- text: 'cheerful colors,silly,indescribable,Elemental fantasy metropolis outside of the universe' |
|
output: |
|
url: >- |
|
4057752.jpeg |
|
- text: 'oil painting,golden hour, blue sky, clouds, scenery, "at the indescribable Arcology"' |
|
output: |
|
url: >- |
|
4057772.jpeg |
|
- text: 'cheerful colors,Land of Giants' |
|
output: |
|
url: >- |
|
4057773.jpeg |
|
- text: ',warmly lit interior, in a rusted Lotus pond' |
|
output: |
|
url: >- |
|
4057777.jpeg |
|
- text: 'whimsical,silly,cheerful colors,Air Elemental Zone' |
|
output: |
|
url: >- |
|
4057780.jpeg |
|
- text: 'cheerful colors,oil painting,whimsical,rock concert in a empty,Ethereal fantasy vertical city beyond the end of reality, masterpiece' |
|
output: |
|
url: >- |
|
4057795.jpeg |
|
- text: 'whimsical,cheerful colors,silly,Graffiti-covered alleyway in a far future subsurface scattering neon forest green scifi metropolis edge of the multiverse, masterpiece, by Mike Winkelmann (Beeple)' |
|
output: |
|
url: >- |
|
4057807.jpeg |
|
- text: 'Land of Eternal Day' |
|
output: |
|
url: >- |
|
4057808.jpeg |
|
|
|
--- |
|
|
|
# Envy Stylized XL 02 |
|
|
|
<Gallery /> |
|
|
|
|
|
|
|
|
|
|
|
## Model description |
|
|
|
<p>Another stylized LoRA. This one favors high contrast, expressionism, and generally cheerful colors. It works across a wide range of weights. Turn it down to 0.25 for a subtle effect, or up to 2.5 for a complete transformation into something abstract and crazy.</p> |
|
|
|
|
|
|
|
## Download model |
|
|
|
Weights for this model are available in Safetensors format. |
|
|
|
[Download](/e-n-v-y/envy-stylized-xl-02/tree/main) them in the Files & versions tab. |
|
|
|
## Use it with the [🧨 diffusers library](https://github.com/huggingface/diffusers) |
|
|
|
```py |
|
from diffusers import AutoPipelineForText2Image |
|
import torch |
|
|
|
pipeline = AutoPipelineForText2Image.from_pretrained('stabilityai/stable-diffusion-xl-base-1.0', torch_dtype=torch.float16).to('cuda') |
|
pipeline.load_lora_weights('e-n-v-y/envy-stylized-xl-02', weight_name='EnvyStylizedXL02.safetensors') |
|
image = pipeline('Land of Eternal Day').images[0] |
|
``` |
|
|
|
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) |
|
|
|
|