Kang-Seong-Jun commited on
Commit
13da64c
โ€ข
1 Parent(s): 1f3e06f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -2
app.py CHANGED
@@ -1,4 +1,14 @@
1
  import gradio as gr
2
 
3
- gr.load("models/Kang-Seong-Jun/Korean_Real_Estate_Classifier",
4
- examples=[['example_images/apart.jpg','example_images/house.jpg','example_images/living_room.jpg','example_images/bathroom.jpg','example_images/kitchen.jpg']]).launch()
 
 
 
 
 
 
 
 
 
 
 
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()