feat: remove title
Browse files
app.py
CHANGED
|
@@ -91,7 +91,6 @@ with gr.Blocks() as demo:
|
|
| 91 |
|
| 92 |
fn = lambda pil_image: predict(model=model, pil_image=pil_image)
|
| 93 |
gr.Interface(
|
| 94 |
-
title="ML model for detecting bears from camera traps 🐻",
|
| 95 |
fn=fn,
|
| 96 |
inputs=input,
|
| 97 |
outputs=[output_image, output_raw],
|
|
|
|
| 91 |
|
| 92 |
fn = lambda pil_image: predict(model=model, pil_image=pil_image)
|
| 93 |
gr.Interface(
|
|
|
|
| 94 |
fn=fn,
|
| 95 |
inputs=input,
|
| 96 |
outputs=[output_image, output_raw],
|