sd-2.1 / sd-2-1.py
TenPoisk
Update sd-2-1.py
61fe7bf
raw
history blame
469 Bytes
#import library
import gradio as gr
#title of app
title = "🔥 Stable Diffusion 2.1"
#description of app
description = "This space is for generating images from text with the Stable Diffusion 2.1 model!"
#article of app
article = """
<p style='text-align: center'>
<a href='https://hf.co/CofAI' target='_blank'>CofAI Group</a>
</p>
"""
gr.Interface.load("models/stabilityai/stable-diffusion-2-1", title=title, description=description, article=article).launch()