Spaces:
Sleeping
Sleeping
robotjagaek
commited on
Commit
•
3ccafb8
1
Parent(s):
f4a26ae
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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/robotjagaek/shoes-classifier",
|
11 |
+
title="Shoes classifier",
|
12 |
+
description=description_html
|
13 |
+
).launch()
|