pragnakalp commited on
Commit
19c148f
1 Parent(s): f801bb8

add value in radio button

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -189,7 +189,7 @@ Create user interface for OCR demo
189
  """
190
 
191
  image = gr.Image(shape=(224, 224),elem_id="img_div")
192
- method = gr.Radio(["EasyOCR", "KerasOCR", "PaddleOCR"],'PaddleOCR',elem_id="radio_div")
193
  output = gr.Textbox(label="Output")
194
 
195
  demo = gr.Interface(
 
189
  """
190
 
191
  image = gr.Image(shape=(224, 224),elem_id="img_div")
192
+ method = gr.Radio(["EasyOCR", "KerasOCR", "PaddleOCR"],value="PaddleOCR",elem_id="radio_div")
193
  output = gr.Textbox(label="Output")
194
 
195
  demo = gr.Interface(