🎨 Format Python code with psf/black
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user