dnth commited on
Commit
cfd2a9d
·
verified ·
1 Parent(s): 36a9491

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -48,8 +48,8 @@ iface = gr.Interface(
48
  fn=predict,
49
  inputs=gr.Image(type="pil"),
50
  outputs=gr.Label(num_top_classes=5),
51
- title="Image Classification with ONNX TensorRT",
52
- description="Upload an image to classify it using the ONNX TensorRT model.",
53
  examples=[example_image], # Add the example image to the interface
54
  )
55
 
 
48
  fn=predict,
49
  inputs=gr.Image(type="pil"),
50
  outputs=gr.Label(num_top_classes=5),
51
+ title="Image Classification with ONNX using EVA02 model",
52
+ description="Blog post: https://dicksonneoh.com/portfolio/supercharge_your_pytorch_image_models/",
53
  examples=[example_image], # Add the example image to the interface
54
  )
55