|
--- |
|
tags: |
|
- text-to-image |
|
- stable-diffusion |
|
- lora |
|
- diffusers |
|
- template:sd-lora |
|
widget: |
|
- text: '-' |
|
output: |
|
url: images/2000_custom_lora_output_0.png |
|
base_model: runwayml/stable-diffusion-v1-5 |
|
instance_prompt: null |
|
license: mit |
|
--- |
|
# MinecraftStyleStableDiffusion |
|
|
|
<Gallery /> |
|
|
|
## Model description |
|
|
|
```python |
|
|
|
from diffusers import DiffusionPipeline |
|
|
|
pipe = DiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5") |
|
pipe.load_lora_weights("TristanJLegg/MinecraftStyleStableDiffusion") |
|
|
|
prompt = "a cabin in the woods" |
|
img = pipe(prompt).images[0] |
|
img.save(f"minecraft_style_stable_diffusion.png") |
|
|
|
``` |
|
|
|
## Download model |
|
|
|
Weights for this model are available in Safetensors format. |
|
|
|
[Download](/TristanJLegg/MinecraftStyleStableDiffusion/tree/main) them in the Files & versions tab. |
|
|