ahasera commited on
Commit
6a96152
·
1 Parent(s): 0846e85

naughty missing commma

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -304,7 +304,7 @@ with gr.Blocks(theme=gr.themes.Soft()) as demo:
304
  with gr.Row():
305
  with gr.Column(scale=1):
306
  input_image = gr.Image(type="numpy", label="Input image")
307
- ocr_selector = gr.Radio(choices=['easyocr', 'paddleocr' 'pytesseract', 'kerasocr', 'trocr'], value='easyocr', label="Select OCR Engine")
308
  confidence_slider = gr.Slider(minimum=0, maximum=1, value=0.5, step=0.01, label="Detection Confidence Threshold")
309
  submit_btn = gr.Button("Detect License Plates", variant="primary")
310
 
 
304
  with gr.Row():
305
  with gr.Column(scale=1):
306
  input_image = gr.Image(type="numpy", label="Input image")
307
+ ocr_selector = gr.Radio(choices=['easyocr', 'paddleocr', 'pytesseract', 'kerasocr', 'trocr'], value='easyocr', label="Select OCR Engine")
308
  confidence_slider = gr.Slider(minimum=0, maximum=1, value=0.5, step=0.01, label="Detection Confidence Threshold")
309
  submit_btn = gr.Button("Detect License Plates", variant="primary")
310