ri_optimization / app.py
XPMaster's picture
Update app.py
09b0f06 verified
raw
history blame
No virus
474 Bytes
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
from scipy.stats import nbinom, poisson, gamma, weibull_min, invgauss, lognorm, pareto
from scipy.stats import kstest, chisquare
from scipy.stats import nbinom, poisson, chi2
import statsmodels.api as sm
import warnings
import os
import gradio as gr
def greet(name):
return "Hello " + name + "!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()