hotfix for tensor1 table generation
Browse files
app.py
CHANGED
@@ -63,7 +63,7 @@ def generate_table(n1,dim1,n2,dim2,out_shape,n_dim):
|
|
63 |
if index < (n_dim - n1):
|
64 |
makdown_table += "| "
|
65 |
else:
|
66 |
-
makdown_table += f"| {dim1[index - (n_dim-
|
67 |
makdown_table +="|\n"
|
68 |
# tensor 2
|
69 |
for index in range(n_dim):
|
|
|
63 |
if index < (n_dim - n1):
|
64 |
makdown_table += "| "
|
65 |
else:
|
66 |
+
makdown_table += f"| {dim1[index - (n_dim- n1)]}"
|
67 |
makdown_table +="|\n"
|
68 |
# tensor 2
|
69 |
for index in range(n_dim):
|