Noah Vriese commited on
Commit
39bfba8
·
1 Parent(s): 654eb07

Update visualizations

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -85,12 +85,12 @@ gradio_app = gr.Interface(
85
  outputs=[
86
  gr.Image(label="Processed Image"),
87
  gr.Label(label="Result", num_top_classes=2),
88
- gr.File(label="Download JSON"),
89
- gr.Textbox(label="Copy JSON Text", lines=10)
90
  ],
91
  title="License Plate Detection",
92
  examples=example_images,
93
  )
94
 
95
  if __name__ == "__main__":
96
- gradio_app.launch(share=True)
 
85
  outputs=[
86
  gr.Image(label="Processed Image"),
87
  gr.Label(label="Result", num_top_classes=2),
88
+ gr.Textbox(label="Copy JSON Text", lines=10),
89
+ gr.File(label="Download JSON")
90
  ],
91
  title="License Plate Detection",
92
  examples=example_images,
93
  )
94
 
95
  if __name__ == "__main__":
96
+ gradio_app.launch()