Spaces:
Runtime error
Runtime error
Commit
·
c9604dc
1
Parent(s):
f7fc015
Update app.py
Browse files
app.py
CHANGED
@@ -20,7 +20,6 @@ title = "Yolov7 Skin Burn Detection"
|
|
20 |
image = gr.inputs.Image(shape=(614,614), image_mode="RGB", source="upload", label="Upload Image", optional=False)
|
21 |
outputs = gr.outputs.Image(type="pil", label="Output Image")
|
22 |
|
23 |
-
|
24 |
Top_Title="Yolov7 Skin Burn Detection | 基于Yolov7的深度学习皮肤烧伤检测模型"
|
25 |
Custom_description="Upload Any Burn Image to Begin. Made by Michael.W"
|
26 |
Footer="北京清华附中计算机高研社团@THIS 2023"
|
@@ -32,4 +31,5 @@ gr.Interface(
|
|
32 |
outputs=outputs,
|
33 |
title=Top_Title,
|
34 |
description=Custom_description,
|
35 |
-
article=Footer,
|
|
|
|
20 |
image = gr.inputs.Image(shape=(614,614), image_mode="RGB", source="upload", label="Upload Image", optional=False)
|
21 |
outputs = gr.outputs.Image(type="pil", label="Output Image")
|
22 |
|
|
|
23 |
Top_Title="Yolov7 Skin Burn Detection | 基于Yolov7的深度学习皮肤烧伤检测模型"
|
24 |
Custom_description="Upload Any Burn Image to Begin. Made by Michael.W"
|
25 |
Footer="北京清华附中计算机高研社团@THIS 2023"
|
|
|
31 |
outputs=outputs,
|
32 |
title=Top_Title,
|
33 |
description=Custom_description,
|
34 |
+
article=Footer,
|
35 |
+
examples=[["skin_burn1.jpg"], ["skin_burn2.jpg"]]).launch()
|