XPMaster commited on
Commit
09b0f06
1 Parent(s): f7bef1b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -2
app.py CHANGED
@@ -8,5 +8,12 @@ from scipy.stats import nbinom, poisson, chi2
8
  import statsmodels.api as sm
9
  import warnings
10
 
11
- warnings.filterwarnings("ignore")
12
- import os
 
 
 
 
 
 
 
 
8
  import statsmodels.api as sm
9
  import warnings
10
 
11
+ import os
12
+
13
+ import gradio as gr
14
+
15
+ def greet(name):
16
+ return "Hello " + name + "!"
17
+
18
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text")
19
+ demo.launch()