multimodalart's picture
Upload folder using huggingface_hub
6eb9054
---
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
- city
- person
- color grading
- scenery
- style
- woman
- cinematic
- man
- landscape
base_model: stabilityai/stable-diffusion-xl-base-1.0
instance_prompt: awesomize
widget:
- text: 'awesomize, anime style, digital painting, morning, blue sky, clouds, scenery, far-future Mizuiro Kaiwai interior of an airship'
output:
url: >-
3783623.jpeg
- text: 'awesomize, anime style, digital painting, noon, blue sky, clouds, scenery, "at the Moody Enigmatic Factory"'
output:
url: >-
3783601.jpeg
- text: 'awesomize, anime style, digital painting, noon, architecture, rural shanty city'
output:
url: >-
3783612.jpeg
- text: 'awesomize, anime style, digital painting, warmly lit interior, in a Whimsical tree village'
output:
url: >-
3783639.jpeg
- text: 'awesomize, anime style, digital painting, scifispace cargo dock in a cheerful,impossible fantasy topia outside of the multiverse, masterpiece'
output:
url: >-
3783651.jpeg
- text: 'awesomize, anime style, digital painting, 1girl, woman, scifi, "new weird",traditional Chinese futurism,retro-futuristic, goth girl, full body, wearing infra dark goldenrod plugsuit, bombshell hair, blue-grey hair with brown highlights, High Ponytail, toned body, athletic build, narrow waist, medium breasts, caucasian, (warmly lit interior, in a Drab indoor garden:1.3)'
output:
url: >-
3783695.jpeg
- text: 'awesomize, anime style, digital painting, morning, blue sky, clouds, architecture, Coffinwood plain background'
output:
url: >-
3783710.jpeg
- text: 'awesomize, anime style, digital painting, Djinn Desert'
output:
url: >-
3783726.jpeg
- text: 'awesomize, photograph, scifigreat scifi cloud city beyond the beginning of the universe'
output:
url: >-
3783804.jpeg
- text: 'awesomize, photograph, Subtropical Rainforest'
output:
url: >-
3783861.jpeg
---
# Envy Awesomizer XL 01
<Gallery />
## Model description
<p>This LoRA gives your scene a strong cinematic look (dramatic lighting, dramatic poses, dramatic colors, etc). I have it set to weight 0.8 for scenery and 2.0 for people, but YMMV depending on checkpoint and subject matter. Trigger word is "awesomize".</p>
## Trigger words
You should use `awesomize` to trigger the image generation.
## Download model
Weights for this model are available in Safetensors format.
[Download](/e-n-v-y/envy-awesomizer-xl-01/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-awesomizer-xl-01', weight_name='EnvyAwesomizeXL01.safetensors')
image = pipeline('awesomize, photograph, Subtropical Rainforest').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)