SRDdev commited on
Commit
cddddab
1 Parent(s): 947217a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -27,9 +27,11 @@ output = gr.outputs.Textbox(type="auto",label="Captions")
27
  examples = [f"example{i}.jpg" for i in range(1,7)]
28
 
29
  title = "Image Captioning "
30
-
31
  interface = gr.Interface(
 
32
  fn=predict,
 
33
  inputs = input,
34
  theme="grass",
35
  outputs=output,
 
27
  examples = [f"example{i}.jpg" for i in range(1,7)]
28
 
29
  title = "Image Captioning "
30
+ description = "Made by : shreyasdixit.tech"
31
  interface = gr.Interface(
32
+
33
  fn=predict,
34
+ description=description,
35
  inputs = input,
36
  theme="grass",
37
  outputs=output,