--- 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 - anime - person - watercolor - scenery - style - painting base_model: stabilityai/stable-diffusion-xl-base-1.0 instance_prompt: watercolor widget: - text: 'anime style watercolor, noon, blue sky, clouds, scenery, weird Visual Kei locker room in a Magical Spring Oasis' output: url: >- 4361796.jpeg - text: 'anime style watercolor, scifi hospital in a utopian,epic fantasy underwater metropolis at the beginning of time, masterpiece' output: url: >- 4361780.jpeg - text: 'anime style watercolor, 1girl, woman, dark red hair, Balayage' output: url: >- 4361786.jpeg - text: 'anime style watercolor, scifi a solemn,steely fantasy cliffside topia at the end of reality, masterpiece' output: url: >- 4361852.jpeg - text: 'watercolor, warmly lit interior, in a Musty museum' output: url: >- 4361827.jpeg - text: 'anime style watercolor, 1girl, woman, brown hair, Tuck and Roll, noon, blue sky, clouds, architecture, Nerdcore foundry by a Rocky shoreline with tide pools in a Venice at the beginning of the universe' output: url: >- 4361782.jpeg - text: 'anime style watercolor, golden hour, blue sky, clouds, architecture, "at the Shadowy Supernatural Observatory"' output: url: >- 4361795.jpeg - text: 'anime style watercolor, 1girl, woman, beautiful, pastel platinum hair, short hair,Top Knot, noon, blue sky, clouds, scenery, "at the living cavern"' output: url: >- 4361810.jpeg --- # Envy Anime Watercolor XL 01 ## Model description

A watercolor LoRA for anime checkpoints that don't otherwise do watercolor art readily.

## Trigger words You should use `watercolor` to trigger the image generation. ## Download model Weights for this model are available in Safetensors format. [Download](/e-n-v-y/envy-anime-watercolor-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-anime-watercolor-xl-01', weight_name='EnvyAnimeWatercolorXL01.safetensors') image = pipeline('anime style watercolor, 1girl, woman, beautiful, pastel platinum hair, short hair,Top Knot, noon, blue sky, clouds, scenery, "at the living cavern"').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)