mawady commited on
Commit
2b73cea
·
1 Parent(s): a40046b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -67,9 +67,9 @@ im = gr.inputs.Image(shape=(512, 512), image_mode='RGB',
67
  invert_colors=False, source="upload",
68
  type="pil")
69
  title = "CatsVsDogs Classifier"
70
- description = "Playground: Inferernce of Object Classification (Binary) using ResNet model and CatsVsDogs dataset. Tools: Pytorch, Gradio."
71
  examples = [['./cat.jpg'],['./dog.jpg']]
72
- article="<p style='text-align: center'><a href='https://github.com/mawady/colab-recipes-cv' target='_blank'>Colab recipes for computer vision - Dr. Mohamed Elawady</a></p>"
73
  iface = gr.Interface(
74
  do_inference,
75
  im,
 
67
  invert_colors=False, source="upload",
68
  type="pil")
69
  title = "CatsVsDogs Classifier"
70
+ description = "Playground: Inferernce of Object Classification (Binary) using ResNet18 model and CatsVsDogs dataset. Libraries: PyTorch, Gradio."
71
  examples = [['./cat.jpg'],['./dog.jpg']]
72
+ article="<p style='text-align: center'><a href='https://github.com/mawady/colab-recipes-cv' target='_blank'>Colab Recipes for Computer Vision - Dr. Mohamed Elawady</a></p>"
73
  iface = gr.Interface(
74
  do_inference,
75
  im,