mrdbourke commited on
Commit
99e29a4
β€’
1 Parent(s): f94161e

add links to description

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -56,7 +56,14 @@ def pred_on_custom_image(image, # input image (preprocessed by Gradio's Image in
56
 
57
  # Create Gradio interface
58
  interface_title = "Dog Vision πŸΆπŸ‘οΈ"
59
- interface_description = "Identify different dogs in images with deep learning. Model trained with TensorFlow/Keras."
 
 
 
 
 
 
 
60
  interface = gr.Interface(fn=pred_on_custom_image,
61
  inputs=gr.Image(),
62
  outputs=gr.Label(num_top_classes=3),
 
56
 
57
  # Create Gradio interface
58
  interface_title = "Dog Vision πŸΆπŸ‘οΈ"
59
+ interface_description = """
60
+ Identify different dogs in images with deep learning. Model trained with TensorFlow/Keras.
61
+
62
+ ## Links
63
+
64
+ * Original dataset: http://vision.stanford.edu/aditya86/ImageNetDogs/
65
+ * Code to train model: https://dev.mrdbourke.com/zero-to-mastery-ml/end-to-end-dog-vision-v2/
66
+ """
67
  interface = gr.Interface(fn=pred_on_custom_image,
68
  inputs=gr.Image(),
69
  outputs=gr.Label(num_top_classes=3),