Yeyito commited on
Commit
5b3849a
1 Parent(s): 8ea42fc

Caching model1 responses for 2x speedup

Browse files
Files changed (2) hide show
  1. .gitignore +1 -0
  2. app.py +1 -1
.gitignore CHANGED
@@ -2,3 +2,4 @@ Environment/
2
  out/
3
  flagged/
4
  Evaluations/
 
 
2
  out/
3
  flagged/
4
  Evaluations/
5
+ saves/
app.py CHANGED
@@ -295,7 +295,7 @@ with demo:
295
 
296
  thread = Thread(target=worker_thread)
297
  thread.start()
298
- demo.launch()
299
 
300
  # Some worries:
301
  # 1. Am I testing things correctly in eval.py, following the template format?
 
295
 
296
  thread = Thread(target=worker_thread)
297
  thread.start()
298
+ demo.launch(share=True)
299
 
300
  # Some worries:
301
  # 1. Am I testing things correctly in eval.py, following the template format?