Skip to content

Commit

Permalink
Format code with black
Browse files Browse the repository at this point in the history
  • Loading branch information
jameschapman19 authored and github-actions[bot] committed Aug 9, 2023
1 parent 3656f9e commit e7eecd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cca_zoo/linear/_iterative/_deflation.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ def deflate_view(residual: np.ndarray, weights: np.ndarray) -> np.ndarray:
score = residual @ weights

# Deflate the residual by different methods based on the deflation attribute
return residual - residual @ weights@ weights.T / (weights.T @ weights)
return residual - residual @ weights @ weights.T / (weights.T @ weights)

0 comments on commit e7eecd5

Please sign in to comment.