File size: 622 Bytes
a1a239e
9aeeec2
e79607f
 
feb09d0
e79607f
 
 
13da64c
 
 
 
 
e70e217
2360a9e
13da64c
 
e79607f
feb09d0
e79607f
13da64c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import gradio as gr

description_html = """
<div style="text-align: center;">
    ๐Ÿ ์ด ๋ชจ๋ธ์€ ๊ฐ์ข… ๋ถ€๋™์‚ฐ์˜ ์œ ํ˜•,์ข…๋ฅ˜๋ฅผ ๋ถ„๋ฅ˜ํ•ด์„œ ํ™•๋ฅ ๋กœ ํ‘œํ˜„ํ•ด์ค๋‹ˆ๋‹ค!๐Ÿข<br>
    ๋ถ„๋ฅ˜ํ•˜๊ณ ์ž ํ•˜๋Š” ๋ถ€๋™์‚ฐ์˜ ์ด๋ฏธ์ง€๋ฅผ ๋„ฃ์–ด์ฃผ์„ธ์š”!
</div>
"""
gr.load(
    "models/Kang-Seong-Jun/Korean_Real_Estate_Classifier",
    examples=[
        ['example_images/apart.jpg'],
        ['example_images/house.jpg'],
        ['living room.jpg'],
        ['toilet.jpg'],
        ['example_images/kitchen.jpg']
    ],

    title="ํ•œ๊ตญํ˜• ๋ถ€๋™์‚ฐ ๋ถ„๋ฅ˜ ๋ชจ๋ธ๐Ÿก",
    description=description_html
).launch()