fix kwarg
Browse files
app.py
CHANGED
@@ -62,7 +62,7 @@ def predict(dim1, dim2):
|
|
62 |
# add code exmplanation here
|
63 |
|
64 |
return EXAMPLE_MD.format(
|
65 |
-
n1=str(n1), dim1=str(dim1),
|
66 |
)
|
67 |
|
68 |
|
|
|
62 |
# add code exmplanation here
|
63 |
|
64 |
return EXAMPLE_MD.format(
|
65 |
+
n1=str(n1), dim1=str(dim1), n2=str(n2), dim2=str(dim2), out_shape=str(out_shape)
|
66 |
)
|
67 |
|
68 |
|