Open
Description
From tucker_decomposition_conv_layer(layer, target_ratio_):
The line : left, right = 0, len(S) - 1 causes an error if it actually reaches 0. If it does reach 0, then the rank is 0 and when it attempts to create a tensor with shape 0 it fails. To prevent this, the line should be left, right = 1, len(S) - 1
Metadata
Metadata
Assignees
Labels
No labels