Sban57 commited on
Commit
c6402cb
1 Parent(s): 6fd28eb

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +26 -0
app.py ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ description_html = """
5
+
6
+ <div style="text-align: center;">
7
+
8
+     🏠이 모델은 피자 라면 파스타를 분류해줘요🏢<br>
9
+
10
+     분류하고자 하는 이미지를 넣어주세요!
11
+
12
+ </div>
13
+
14
+ """
15
+
16
+ gr.load(
17
+
18
+     "models/Sban57/ske_sk",
19
+
20
+     title="food",
21
+
22
+     description=description_html
23
+
24
+ ).launch()
25
+
26
+