File size: 1,194 Bytes
0b440f1 8d02119 5ac00e2 88e71d2 b5ef42e 8d02119 88e71d2 0b440f1 cd50620 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
---
tags:
- text-to-image
- stable-diffusion
- lora
- diffusers
- image-generation
- safetensors
widget:
- text: myst33d style, 1boy, furry, looking at viewer, city background
- text: myst33d style, 1boy, furry, looking at viewer, city background
output:
url: images/example_2pcqsm7pb.png
- text: myst33d style, 1boy, furry, looking at viewer, city background
output:
url: images/example_3xclqf9vw.png
base_model: stabilityai/stable-diffusion-xl-base-1.0
---
# Myst33d Style LoRA
A barely working LoRA of my vaguely similar art style
## Prompting
Use `myst33d style` to stylize anything, `anime` works well along with `myst33d style`
## Using with diffusers
```
import torch
from diffusers import StableDiffusionXLPipeline
from diffusers.models import AutoencoderKL
pipe = StableDiffusionXLPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float16, variant="fp16", use_safetensors=True)
pipe.load_lora_weights("myst33d/myst33dLoRA")
pipe.to("cuda")
image = pipe(
prompt="myst33d style, 1boy, furry, looking at viewer, city background",
num_inference_steps=30,
guidance_scale=9,
).images[0]
# Do whatever with the image here
``` |