Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -30,4 +30,4 @@ def infer(inputs):
|
|
30 |
return pd.DataFrame(predictions, columns=["results"])
|
31 |
|
32 |
gr.Interface(infer, inputs = inputs, outputs = outputs, title = title,
|
33 |
-
description = description, examples=df.head(3), cache_examples=False).launch(debug=True)
|
|
|
30 |
return pd.DataFrame(predictions, columns=["results"])
|
31 |
|
32 |
gr.Interface(infer, inputs = inputs, outputs = outputs, title = title,
|
33 |
+
description = description, examples=[df.head(3)], cache_examples=False).launch(debug=True)
|