muddokon commited on
Commit
0d3b96f
verified
1 Parent(s): 0b75f14

Update app.py

Browse files

Fixed Examples

Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -27,9 +27,10 @@ iface = gr.Interface(
27
  )
28
  ],
29
  outputs=['text'],
30
- title = "character sequence recognition from scene-image (captcha)",
31
- description = "Using some TrOCR models found on the HF Hub. Will you have to train your own?",
32
- examples = ['','']
33
  )
34
 
 
35
  iface.launch()
 
27
  )
28
  ],
29
  outputs=['text'],
30
+ title = "Character Sequence Recognition From Captcha Image",
31
+ description = "Using some TrOCR models found on the HF Hub to test/break tough text captchas. Will you have to train your own?",
32
+ examples = ['krcx5.jpg','hyp2a.jpg','k4kyf.jpg']
33
  )
34
 
35
+ iface.queue(max_size=10)
36
  iface.launch()