Noonaa commited on
Commit
501bac8
ยท
verified ยท
1 Parent(s): 7b70912

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -0
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()