not-lain commited on
Commit
1e8af48
·
1 Parent(s): 039cd66

hotfix for tensor1 table generation

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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- n2)]}"
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):