add reqs
Browse files
app.py
CHANGED
@@ -3,7 +3,8 @@ import gradio as gr
|
|
3 |
|
4 |
def greet(name):
|
5 |
import torch
|
6 |
-
|
|
|
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")
|