Kang-Seong-Jun commited on
Commit
c1b82c6
β€’
1 Parent(s): d4d7efc

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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/Kang-Seong-Jun/Korean_Real_Estate_Classifier",
11
+
12
+ title="당신은 고양이상? 강아지상?🏑",
13
+ description=description_html
14
+ ).launch()