muellerzr HF staff commited on
Commit
22f0c18
·
1 Parent(s): 7326971

Don't share

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,7 +7,7 @@ import gradio as gr
7
  import time
8
 
9
  PORT = 3000
10
- HOST = "127.0.0.1"
11
 
12
  REPO_ID = "muellerzr/bert-base-cased-tpu-accelerate-experiments"
13
 
@@ -61,7 +61,7 @@ def main():
61
  outputs=gr.HTML(html),
62
  )
63
 
64
- demo.launch(share=True)
65
 
66
  if __name__ == "__main__":
67
  main()
 
7
  import time
8
 
9
  PORT = 3000
10
+ HOST = "localhost"
11
 
12
  REPO_ID = "muellerzr/bert-base-cased-tpu-accelerate-experiments"
13
 
 
61
  outputs=gr.HTML(html),
62
  )
63
 
64
+ demo.launch()
65
 
66
  if __name__ == "__main__":
67
  main()