Spaces:
Runtime error
Runtime error
cybernatedArt
commited on
Commit
·
63b8c06
1
Parent(s):
a677d6b
Update app.py
Browse files
app.py
CHANGED
@@ -23,5 +23,10 @@ image = gr.inputs.Image(shape = (256, 256))
|
|
23 |
label = gr.outputs.Label(num_top_classes = 4)
|
24 |
|
25 |
# launching the interface
|
|
|
|
|
|
|
|
|
|
|
26 |
# launching the interface
|
27 |
-
gr.Interface(fn = example,inputs = image,outputs = label,capture_session = True, title=
|
|
|
23 |
label = gr.outputs.Label(num_top_classes = 4)
|
24 |
|
25 |
# launching the interface
|
26 |
+
|
27 |
+
title = "SKIN DISEASE PREDICTION"
|
28 |
+
description = "An automated system is proposed for the diagnosis of #23 common skin diseases by using data from clinical images and patient information using deep
|
29 |
+
learning pre-trained ResNet50 model."
|
30 |
+
|
31 |
# launching the interface
|
32 |
+
gr.Interface(fn = example,inputs = image,outputs = label,capture_session = True, title=title,description= description ).launch(share=True)
|