Ferdinand Tom-Eshemogie commited on
Commit
3037da5
·
1 Parent(s): 765121f

Make Link Pulic

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -35,5 +35,5 @@ iface = gr.Interface(fn=classify_image,
35
  # This condition checks if the script is being run as the main program and launches the Gradio interface.
36
  # It ensures that the Gradio server starts only when this script is executed directly, not when imported as a module.
37
  if __name__ == "__main__":
38
- iface.launch() # Starts the Gradio interface
39
 
 
35
  # This condition checks if the script is being run as the main program and launches the Gradio interface.
36
  # It ensures that the Gradio server starts only when this script is executed directly, not when imported as a module.
37
  if __name__ == "__main__":
38
+ iface.launch(share=True) # Starts the Gradio interface
39