John Graham Reynolds
commited on
Commit
·
6a4f85e
1
Parent(s):
288a6ca
test fix
Browse files
app.py
CHANGED
@@ -40,10 +40,11 @@ def show_off(predictions: list[list]) -> str:
|
|
40 |
|
41 |
gr.Interface(
|
42 |
fn=show_off,
|
43 |
-
inputs="
|
44 |
outputs="text",
|
45 |
title=title,
|
46 |
description=description,
|
47 |
article=article,
|
48 |
examples=[[1, 0, 2, 0, 1]],
|
|
|
49 |
).launch()
|
|
|
40 |
|
41 |
gr.Interface(
|
42 |
fn=show_off,
|
43 |
+
inputs=gr.Dataframe(type="array", datatype="number", row_count=5, col_count=1),
|
44 |
outputs="text",
|
45 |
title=title,
|
46 |
description=description,
|
47 |
article=article,
|
48 |
examples=[[1, 0, 2, 0, 1]],
|
49 |
+
cache_examples=False
|
50 |
).launch()
|