Kashif Rasul
initial
46dbe9e
raw
history blame
219 Bytes
import gradio as gr
def forecast(data):
return data
demo = gr.Interface(
forecast,
[
gr.Timeseries(),
],
[
gr.Timeseries(),
],
)
if __name__ == "__main__":
demo.launch()