kyurimsun commited on
Commit
6286037
·
1 Parent(s): 87bb700

UI edit(2)

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -113,7 +113,7 @@ demo = gr.Interface(
113
  fn=run_inference,
114
  inputs=gr.Image(type="numpy", label="Input Image"),
115
  outputs=gr.Plot(label="Overlay + Legend"),
116
- theme="soft",
117
  examples=[
118
  "image1.jpg",
119
  "image2.jpg",
@@ -121,6 +121,8 @@ demo = gr.Interface(
121
  "image4.jpg",
122
  "image5.jpg"
123
  ],
 
 
124
  flagging_mode="never",
125
  cache_examples=False,
126
  )
 
113
  fn=run_inference,
114
  inputs=gr.Image(type="numpy", label="Input Image"),
115
  outputs=gr.Plot(label="Overlay + Legend"),
116
+ theme="mono",
117
  examples=[
118
  "image1.jpg",
119
  "image2.jpg",
 
121
  "image4.jpg",
122
  "image5.jpg"
123
  ],
124
+ title="⚡ ML Homework3: 보도블럭 세그멘테이션",
125
+ description="이미지를 업로드하면 AI가 보도블럭, 도로, 사람 등을 자동으로 탐지합니다.",
126
  flagging_mode="never",
127
  cache_examples=False,
128
  )