Sujatha commited on
Commit
b47b2b3
·
verified ·
1 Parent(s): 3dea44a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -52,7 +52,7 @@ iface = gr.Interface(
52
  description="Classify entries based on tabular data"
53
  )
54
 
55
- # Debug message and launch
56
  print("Launching Gradio Interface...")
57
- iface.launch(share=True)
58
 
 
52
  description="Classify entries based on tabular data"
53
  )
54
 
55
+ # Launch with additional server settings for Hugging Face Spaces
56
  print("Launching Gradio Interface...")
57
+ iface.launch(server_name="0.0.0.0", server_port=7860, share=True)
58