Kang-Seong-Jun commited on
Commit
0a8df5e
โ€ข
1 Parent(s): 45ab940

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/ujin0000/ujin_bio",
11
+ title="Emotion?๐Ÿก",
12
+ description=description_html
13
+ ).launch()