Ferdinand Tom-Eshemogie commited on
Commit
dddabea
·
1 Parent(s): 586955d

deploy app

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. requirement.txt +0 -2
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(share=True) # 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() # Starts the Gradio interface
39
 
requirement.txt DELETED
@@ -1,2 +0,0 @@
1
- fastai>=2.5
2
- gradio>=4.0