Spaces:
Runtime error
Runtime error
chore: adding description
Browse files
app.py
CHANGED
@@ -41,10 +41,16 @@ Involution Kernel
|
|
41 |
<img src='https://i.imgur.com/jHIW26g.png' alt='Involution'>
|
42 |
</center>"""
|
43 |
|
|
|
|
|
|
|
|
|
|
|
44 |
iface = gr.Interface(
|
45 |
fn=infer,
|
46 |
title="Involutional Neural Networks",
|
47 |
article=article,
|
|
|
48 |
inputs=gr.inputs.Image(label="Input Image"),
|
49 |
outputs=[
|
50 |
gr.outputs.Image(label="Activation from Kernel 1"),
|
|
|
41 |
<img src='https://i.imgur.com/jHIW26g.png' alt='Involution'>
|
42 |
</center>"""
|
43 |
|
44 |
+
# define the description
|
45 |
+
description="""<center>
|
46 |
+
Visualize the activation maps from the Involution Kernel.
|
47 |
+
</center>
|
48 |
+
"""
|
49 |
iface = gr.Interface(
|
50 |
fn=infer,
|
51 |
title="Involutional Neural Networks",
|
52 |
article=article,
|
53 |
+
description=description,
|
54 |
inputs=gr.inputs.Image(label="Input Image"),
|
55 |
outputs=[
|
56 |
gr.outputs.Image(label="Activation from Kernel 1"),
|