DawnC commited on
Commit
0f5a0d6
ยท
1 Parent(s): 2f6a4a2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -411,17 +411,18 @@ with gr.Blocks(css="""
411
  breed_buttons = gr.Radio([], label="Select breed for more details", visible=False)
412
  breed_details = gr.Markdown(label="Breed Details")
413
 
414
- async def safe_predict(image):
415
  try:
416
  # ๅพž predict ๅ‡ฝๆ•ธ่ฟ”ๅ›ž็š„ๅ€ผๆ•ธๆ‡‰่ฉฒ่ˆ‡ๆญค่™•ๅŒน้…
417
- prediction, annotated_img, buttons_options = await predict(image)
418
  if buttons_options: # ๅฆ‚ๆžœๆœ‰ๅคš็‹—็ตๆžœ๏ผŒ้กฏ็คบ้ธ้ …ๆŒ‰้ˆ•
419
- return prediction, annotated_img, gr.update(visible=True, choices=buttons_options), gr.update(visible=True)
420
  else: # ๅ–ฎ็‹—้ ๆธฌๆ™‚้šฑ่—ๆŒ‰้ˆ•
421
- return prediction, annotated_img, gr.update(visible=False), gr.update(visible=False)
422
  except Exception as e:
423
  return str(e), None, gr.update(visible=False), gr.update(visible=False), gr.update(visible=False)
424
 
 
425
  input_image.change(
426
  safe_predict,
427
  inputs=input_image,
 
411
  breed_buttons = gr.Radio([], label="Select breed for more details", visible=False)
412
  breed_details = gr.Markdown(label="Breed Details")
413
 
414
+ async def safe_predict(image):
415
  try:
416
  # ๅพž predict ๅ‡ฝๆ•ธ่ฟ”ๅ›ž็š„ๅ€ผๆ•ธๆ‡‰่ฉฒ่ˆ‡ๆญค่™•ๅŒน้…
417
+ prediction, annotated_img, buttons_options, breed_details_visibility = await predict(image)
418
  if buttons_options: # ๅฆ‚ๆžœๆœ‰ๅคš็‹—็ตๆžœ๏ผŒ้กฏ็คบ้ธ้ …ๆŒ‰้ˆ•
419
+ return prediction, annotated_img, gr.update(visible=True, choices=buttons_options), breed_details_visibility
420
  else: # ๅ–ฎ็‹—้ ๆธฌๆ™‚้šฑ่—ๆŒ‰้ˆ•
421
+ return prediction, annotated_img, gr.update(visible=False), breed_details_visibility
422
  except Exception as e:
423
  return str(e), None, gr.update(visible=False), gr.update(visible=False), gr.update(visible=False)
424
 
425
+
426
  input_image.change(
427
  safe_predict,
428
  inputs=input_image,