Skip to content

Commit 5dc05d8

Browse files
committed
Removing array stacking
1 parent 49d628f commit 5dc05d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyttb/tensor.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1391,7 +1391,7 @@ def symmetrize( # noqa: PLR0912,PLR0915
13911391
combos = []
13921392
for i in range(0, ngrps):
13931393
combos.append(np.array(list(permutations(grps[i, :]))))
1394-
combos = np.stack(combos)
1394+
# combos = np.stack(combos)
13951395

13961396
# Create all the permutations to be averaged
13971397
combo_lengths = [len(perm) for perm in combos]

0 commit comments

Comments
 (0)