Brasd99 commited on
Commit
a11b506
·
1 Parent(s): b3c844a

Changed labels

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -125,10 +125,10 @@ with gr.Blocks(theme='soft', title='SquadDetective') as blocks:
125
  gr.HTML(title)
126
  gr.Markdown('SquadDetective is a service that helps sports teams to identify unclaimed players by comparing their faces to photos taken during matches. By using state-of-the-art facial recognition technology, SquadDetective can quickly and accurately match the faces of players in photos to a database of registered players, allowing teams to quickly identify any unclaimed players and take appropriate action. With SquadDetective, sports teams can ensure that all players are properly registered and eligible to play, helping to avoid potential penalties and other issues')
127
  with gr.Row():
128
- avatars = gr.inputs.File(label="Avatar Images (zip)")
129
- photos = gr.inputs.File(label="Check Photos (zip)")
130
  inputs = [avatars, photos]
131
- process_button = gr.Button('Check images')
132
  outputs=gr.outputs.Image(type="numpy", label="Results")
133
  process_button.click(fn=check, inputs=inputs, outputs=outputs)
134
 
 
125
  gr.HTML(title)
126
  gr.Markdown('SquadDetective is a service that helps sports teams to identify unclaimed players by comparing their faces to photos taken during matches. By using state-of-the-art facial recognition technology, SquadDetective can quickly and accurately match the faces of players in photos to a database of registered players, allowing teams to quickly identify any unclaimed players and take appropriate action. With SquadDetective, sports teams can ensure that all players are properly registered and eligible to play, helping to avoid potential penalties and other issues')
127
  with gr.Row():
128
+ avatars = gr.inputs.File(label="Avatar images (zip)")
129
+ photos = gr.inputs.File(label="Photos to be processed (zip)")
130
  inputs = [avatars, photos]
131
+ process_button = gr.Button('Process')
132
  outputs=gr.outputs.Image(type="numpy", label="Results")
133
  process_button.click(fn=check, inputs=inputs, outputs=outputs)
134