Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -19,9 +19,9 @@ def classify_image(img_dt):
|
|
| 19 |
|
| 20 |
|
| 21 |
with gr.Blocks() as demo:
|
| 22 |
-
|
| 23 |
-
signal = gr.Markdown(''' #Welcome to Maize Classifier,This model can identify if a leaf is
|
| 24 |
**HEALTHY**, has **COMMON RUST**, **BLIGHT** or **GRAY LEAF SPOT**''')
|
|
|
|
| 25 |
inp = gr.Image()
|
| 26 |
out = gr.Label()
|
| 27 |
inp.upload(fn= classify_image, inputs = inp, outputs = out)
|
|
|
|
| 19 |
|
| 20 |
|
| 21 |
with gr.Blocks() as demo:
|
| 22 |
+
signal = gr.Markdown(''' Welcome to Maize Classifier,This model can identify if a leaf is
|
|
|
|
| 23 |
**HEALTHY**, has **COMMON RUST**, **BLIGHT** or **GRAY LEAF SPOT**''')
|
| 24 |
+
with gr.Row():
|
| 25 |
inp = gr.Image()
|
| 26 |
out = gr.Label()
|
| 27 |
inp.upload(fn= classify_image, inputs = inp, outputs = out)
|