File size: 483 Bytes
8d16490
 
 
 
5c5bbc1
8d16490
 
 
 
 
 
 
 
 
 
 
88674f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import library
import gradio as gr

#title of app
title = "🐶 Stable Diffusion 1.5"

#description of app
description = "This space is for generating images from text with the Stable Diffusion 1.5 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/runwayml/stable-diffusion-v1-5", title=title, description=description, article=article, theme = "Soft").launch()