DanielSc4's picture
Check
ee9ec43
raw
history blame
266 Bytes
import gradio as gr
import pandas as pd
import matplotlib.pyplot as plt
def greet(name):
pd.read_csv('./data/results.csv', index_col=0)
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()