Spaces:
Runtime error
Runtime error
File size: 746 Bytes
32e79d9 |
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 |
import gradio as gr
title = "🔥 Stable Diffusion"
description = \
"""
ℹ️ This space is designed to generate images based on __Stable Diffusion__!
"""
article = \
"""
<p style='text-align: center'>
<a href='https://hf.co/viait' target='_blank'>👑 Owner</a> | <a href='https://stats.uptimerobot.com/Lppy5iNNNV' target='_blank'>📊 Status</a>
</p>
"""
theme = gr.themes.Monochrome(
primary_hue="indigo",
secondary_hue="blue",
neutral_hue="slate",
radius_size=gr.themes.sizes.radius_sm,
font=[gr.themes.GoogleFont("Open Sans"), "ui-sans-serif", "system-ui", "sans-serif"],
)
gr.load("models/runwayml/stable-diffusion-v1-5", title=title, description=description, article=article, theme=theme).launch(share=True)
|