william1324 commited on
Commit
ac81300
·
verified ·
1 Parent(s): d815326

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -17,9 +17,9 @@ demo = gr.Interface(
17
  fn=classify_image,
18
  inputs=gr.Image(type="pil"),
19
  outputs=gr.Label(num_top_classes=4),
20
- title="SDG5 性別平等影像分類模型",
21
- description="上傳一張職業相關圖片,模型將預測其類別:女性醫護、男性醫護、女性工程師、男性工程師。"
22
  )
23
 
24
- # 執行應用
25
- demo.launch()
 
17
  fn=classify_image,
18
  inputs=gr.Image(type="pil"),
19
  outputs=gr.Label(num_top_classes=4),
20
+ title="性別平等影像分類器",
21
+ description="上傳一張職業相關圖片,模型會預測其屬於哪一類:女性醫護、男性醫護、女性工程師或男性工程師。"
22
  )
23
 
24
+ # 啟動應用
25
+ demo.launch()