Spaces:
Sleeping
Sleeping
Kang-Seong-Jun
commited on
Commit
β’
c1b82c6
1
Parent(s):
d4d7efc
Create app.py
Browse files
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()
|