Open
Description
Hello and congrats for this nice repo!
I was looking in the implementation of the regularization loss and I don't know if it matches the original paper.
In the feature_transform_regularizer:
loss = torch.mean(torch.norm(torch.bmm(trans, trans.transpose(2,1)) - I, dim=(1,2)))
Why not:
loss = torch.mean(torch.norm(torch.bmm(trans, trans.transpose(2,1)) - I, dim=(1,2)).pow(2))
In the original paper they use:
Metadata
Metadata
Assignees
Labels
No labels