Kang-Seong-Jun's picture
Update app.py
feb09d0 verified
raw
history blame contribute delete
622 Bytes
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()