publichealthsurveillance commited on
Commit
646ce20
1 Parent(s): 66e0d8c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -19,7 +19,9 @@ def func_phs(text):
19
  return str(results)
20
 
21
  bert_io = gr.Interface(fn=func_bert, inputs="text", outputs="text")
22
- mental_io = gr.Interface(fn=func_mental, inputs="text", outputs="text")
23
- phs_io = gr.Interface(fn=func_phs, inputs="text", outputs="text")
24
 
25
- Parallel(bert_io, mental_io, phs_io).launch()
 
 
 
19
  return str(results)
20
 
21
  bert_io = gr.Interface(fn=func_bert, inputs="text", outputs="text")
22
+ # mental_io = gr.Interface(fn=func_mental, inputs="text", outputs="text")
23
+ # phs_io = gr.Interface(fn=func_phs, inputs="text", outputs="text")
24
 
25
+ # Parallel(bert_io, mental_io, phs_io).launch()
26
+
27
+ bert_io.launch()