🎨 Format Python code with psf/black

This commit is contained in:
ndem0
2024-08-26 12:14:32 +00:00
committed by Nicola Demo
parent 68f5521476
commit 59fc19798f

View File

@@ -37,12 +37,12 @@ class OrthogonalBlock(torch.nn.Module):
)
result = torch.zeros_like(X)
# normalize first basis
X_0 = torch.select(X, self.dim, 0)
result_0 = torch.select(result, self.dim, 0)
result_0 += X_0 / torch.norm(X_0)
# iterate over the rest of the basis with Gram-Schmidt
for i in range(1, X.shape[self.dim]):
v = torch.select(X, self.dim, i)
@@ -54,5 +54,5 @@ class OrthogonalBlock(torch.nn.Module):
) * torch.select(result, self.dim, j)
result_i = torch.select(result, self.dim, i)
result_i += v / torch.norm(v)
return result