Spaces:
Running
Running
anhth commited on
Commit ·
7add99b
1
Parent(s): 82d1c45
Add example grayscale manga images
Browse files
app.py
CHANGED
|
@@ -98,14 +98,15 @@ with gr.Blocks(css=custom_css) as demo:
|
|
| 98 |
)
|
| 99 |
|
| 100 |
# Example section
|
| 101 |
-
|
| 102 |
-
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
|
|
|
| 109 |
|
| 110 |
# Footer
|
| 111 |
gr.Markdown("---")
|
|
|
|
| 98 |
)
|
| 99 |
|
| 100 |
# Example section
|
| 101 |
+
gr.Markdown("### 🖼️ Try an example")
|
| 102 |
+
examples = gr.Examples(
|
| 103 |
+
examples=[
|
| 104 |
+
["gray.jpg"],
|
| 105 |
+
["gray_2.jpg"],
|
| 106 |
+
["gray_4.jpg"],
|
| 107 |
+
],
|
| 108 |
+
inputs=input_image
|
| 109 |
+
)
|
| 110 |
|
| 111 |
# Footer
|
| 112 |
gr.Markdown("---")
|