GustavoYe commited on
Commit
23b4c14
1 Parent(s): 3203f38
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -3,7 +3,8 @@ import gradio as gr
3
 
4
  def greet(name):
5
  import torch
6
- return f"Hello {name}, we are using torch {torch.__version__}"
 
7
 
8
 
9
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
 
3
 
4
  def greet(name):
5
  import torch
6
+ import pandas as pd
7
+ return f"Hello {name}, we are using torch {torch.__version__}, pandas {pd.__version__}"
8
 
9
 
10
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")