tchauffi commited on
Commit
ca5dc4d
·
1 Parent(s): 116c743

Update app.py

Browse files

Exnahnce: gradio presentation

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -43,9 +43,9 @@ outputs = gr.Label(num_top_classes=3)
43
 
44
  title = "MNIST"
45
 
46
- description = "A simple MNIST model"
47
 
48
- article = "<p style='text-align: center'><a href="
49
 
50
  gr.Interface(fn=classify_image, inputs=inputs, outputs=outputs, title=title, description=description, article=article).launch()
51
 
 
43
 
44
  title = "MNIST"
45
 
46
+ description = "A simple number recognition example model"
47
 
48
+ article = "<p style='text-align: center'>Here is a simple implementation of number recognition using MNIST dataset and a Resnet18 backbone.<a href="
49
 
50
  gr.Interface(fn=classify_image, inputs=inputs, outputs=outputs, title=title, description=description, article=article).launch()
51