Spaces:
Runtime error
Runtime error
Commit ·
9413c73
1
Parent(s): 3ced956
Update app.py
Browse files
app.py
CHANGED
|
@@ -29,6 +29,9 @@ examples = [f"example{i}.jpg" for i in range(1,7)]
|
|
| 29 |
description= "Image captioning application made using transformers"
|
| 30 |
title = "Image Captioning 🖼️"
|
| 31 |
|
|
|
|
|
|
|
|
|
|
| 32 |
interface = gr.Interface(
|
| 33 |
fn=predict,
|
| 34 |
inputs = input,
|
|
@@ -39,4 +42,4 @@ interface = gr.Interface(
|
|
| 39 |
description=description,
|
| 40 |
article = article,
|
| 41 |
)
|
| 42 |
-
interface.launch(debug=True)
|
|
|
|
| 29 |
description= "Image captioning application made using transformers"
|
| 30 |
title = "Image Captioning 🖼️"
|
| 31 |
|
| 32 |
+
article = "Created By : Hello Kitty
|
| 33 |
+
"
|
| 34 |
+
|
| 35 |
interface = gr.Interface(
|
| 36 |
fn=predict,
|
| 37 |
inputs = input,
|
|
|
|
| 42 |
description=description,
|
| 43 |
article = article,
|
| 44 |
)
|
| 45 |
+
interface.launch(debug=True)
|