hanwo2 commited on
Commit
5f3a783
ยท
verified ยท
1 Parent(s): a5de771

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -0
app.py ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ description_html = """
4
+ <div style="text-align: center;">
5
+ ๐Ÿ ์ด ๋ชจ๋ธ์€ ๊ฒ€์€์ƒ‰๋Œ๊ณผ ํฐ์ƒ‰๋Œ, ์‹๋ฌผ, ๊ณผ์ผ, ์•ผ์ฑ„๋ฅผ ๋ถ„๋ฅ˜ํ•ฉ๋‹ˆ๋‹ค.๐Ÿข<br>
6
+ ๋ถ„๋ฅ˜ํ•˜๊ณ ์ž ํ•˜๋Š” ์ด๋ฏธ์ง€๋ฅผ ๋„ฃ์–ด์ฃผ์„ธ์š”!
7
+ </div>
8
+ """
9
+ gr.load(
10
+ "models/hanwo2/ST-VG-FU",
11
+ title="Stone and Plant",
12
+ description=description_html
13
+ ).launch()