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](https://github.com/fxia22/pointnet.pytorch/blob/master/pointnet/model.py#L177C1-L177C42): ```python loss = torch.mean(torch.norm(torch.bmm(trans, trans.transpose(2,1)) - I, dim=(1,2))) ``` Why not: ```python loss = torch.mean(torch.norm(torch.bmm(trans, trans.transpose(2,1)) - I, dim=(1,2)).pow(2)) ``` In the original paper they use: $L_\text{reg} = ||I - AA^T||^2$