DawnC commited on
Commit
0526b58
·
1 Parent(s): 7837f49

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
app.py CHANGED
@@ -575,7 +575,7 @@ with gr.Blocks() as iface:
575
  )
576
 
577
  breed_buttons.change(
578
- show_details,
579
  inputs=[breed_buttons, output, initial_state],
580
  outputs=[output, back_button, initial_state]
581
  )
@@ -586,6 +586,11 @@ with gr.Blocks() as iface:
586
  outputs=[output, output_image, breed_buttons, back_button, initial_state]
587
  )
588
 
 
 
 
 
 
589
  gr.HTML('For more details on this project and other work, feel free to visit my GitHub <a href="https://github.com/Eric-Chung-0511/Learning-Record/tree/main/Data%20Science%20Projects/Dog_Breed_Classifier">Dog Breed Classifier</a>')
590
 
591
 
 
575
  )
576
 
577
  breed_buttons.change(
578
+ show_details_html,
579
  inputs=[breed_buttons, output, initial_state],
580
  outputs=[output, back_button, initial_state]
581
  )
 
586
  outputs=[output, output_image, breed_buttons, back_button, initial_state]
587
  )
588
 
589
+ gr.Examples(
590
+ examples=['Border_Collie.jpg', 'Golden_Retriever.jpeg', 'Saint_Bernard.jpeg', 'French_Bulldog.jpeg', 'Samoyed.jpg'],
591
+ inputs=input_image
592
+ )
593
+
594
  gr.HTML('For more details on this project and other work, feel free to visit my GitHub <a href="https://github.com/Eric-Chung-0511/Learning-Record/tree/main/Data%20Science%20Projects/Dog_Breed_Classifier">Dog Breed Classifier</a>')
595
 
596