Muthukamalan commited on
Commit
91820d0
·
1 Parent(s): 98557d1

added Description & Title

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -88,7 +88,10 @@ gr.Interface(
88
  gr.Label(num_top_classes=1, label="Predictions"), # what are the outputs?
89
  gr.Number(label="Prediction time (s)")
90
  ],
91
- examples=[ ['numbers/'+i] for i in os.listdir(os.path.join( os.path.dirname(__file__) ,'numbers'))]
 
 
 
92
  ).launch(share=False,debug=False)
93
 
94
 
 
88
  gr.Label(num_top_classes=1, label="Predictions"), # what are the outputs?
89
  gr.Number(label="Prediction time (s)")
90
  ],
91
+ examples=[ ['numbers/'+i] for i in os.listdir(os.path.join( os.path.dirname(__file__) ,'numbers'))],
92
+ title="The Unsolved MNIST 🔢",
93
+ description="CNN-based Architecture for Fast and Accurate MNIST 🔢 Solution with Reproducible Logs",
94
+ article="Created by muthukamalan.m ❤️"
95
  ).launch(share=False,debug=False)
96
 
97