Kang-Seong-Jun
commited on
Commit
โข
13da64c
1
Parent(s):
1f3e06f
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,14 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
gr.load(
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
gr.load(
|
4 |
+
"models/Kang-Seong-Jun/Korean_Real_Estate_Classifier",
|
5 |
+
examples=[
|
6 |
+
['example_images/apart.jpg'],
|
7 |
+
['example_images/house.jpg'],
|
8 |
+
['example_images/living_room.jpg'],
|
9 |
+
['example_images/bathroom.jpg'],
|
10 |
+
['example_images/kitchen.jpg']
|
11 |
+
],
|
12 |
+
title="ํ๊ตญ ๋ถ๋์ฐ ์ ํ ๋ถ๋ฅ ๋ชจ๋ธ feat.์งํผํฐ์ค",
|
13 |
+
description="์ด ๋ชจ๋ธ์ ๊ฐ์ข
๋ถ๋์ฐ์ ์ ํ, ์ข
๋ฅ๋ฅผ ๋ถ๋ฅํด์ ํ๋ฅ ๋ก ํํํด์ค๋๋ค! ๋ถ๋ฅํ๊ณ ์ ํ๋ ๋ถ๋์ฐ์ ์ด๋ฏธ์ง๋ฅผ ๋ฃ์ด์ฃผ์ธ์!"
|
14 |
+
).launch()
|