Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -28,6 +28,5 @@ gr.Interface(
|
|
28 |
inputs=[gr.Image(type='pil', label='Input'),
|
29 |
gr.CheckboxGroup(choices, type="value", label='language')],
|
30 |
outputs=[gr.Image(type='pil', label='Output'),
|
31 |
-
gr.Dataframe(headers=['text', 'confidence'])]
|
32 |
-
enable_queue=True
|
33 |
-
).launch(debug=True)
|
|
|
28 |
inputs=[gr.Image(type='pil', label='Input'),
|
29 |
gr.CheckboxGroup(choices, type="value", label='language')],
|
30 |
outputs=[gr.Image(type='pil', label='Output'),
|
31 |
+
gr.Dataframe(headers=['text', 'confidence'])]
|
32 |
+
).launch(debug=True, enable_queue=True)
|
|