Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
|
4 |
+
|
5 |
+
description_html = """
|
6 |
+
|
7 |
+
<div style="text-align: center;">
|
8 |
+
|
9 |
+
์ด ๋ชจ๋ธ์ ์ด๋ฏธ์ง๋ฅผ Bus, City, Dog, Food, Tree ๋ก ๋ถ๋ฅํ์ฌ ํ๋ฅ ๋ก ํํํ๋ ๋ชจ๋ธ์
๋๋ค. <br>
|
10 |
+
๋ถ์ํ๊ณ ์ ํ๋ ์ด๋ฏธ์ง๋ฅผ ๋ฃ์ด์ฃผ์ธ์ :)
|
11 |
+
|
12 |
+
</div>
|
13 |
+
|
14 |
+
"""
|
15 |
+
|
16 |
+
gr.load(
|
17 |
+
|
18 |
+
"models/Poohsocute/gpttree",
|
19 |
+
|
20 |
+
title="Bus/City/Dog/Food/Tree",
|
21 |
+
|
22 |
+
description=description_html
|
23 |
+
|
24 |
+
).launch()
|