muddokon commited on
Commit
8665656
verified
1 Parent(s): 02e1b3b

Update app.py

Browse files

Fixed example format

Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -29,7 +29,11 @@ iface = gr.Interface(
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)
 
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 = [
33
+ ['krcx5.jpg'],
34
+ ['hyp2a.jpg'],
35
+ ['k4kyf.jpg']
36
+ ]
37
  )
38
 
39
  iface.queue(max_size=10)