Kang-Seong-Jun
commited on
Commit
โข
0a8df5e
1
Parent(s):
45ab940
Create app.py
Browse files
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()
|