Skip to content

Commit 36966c0

Browse files
pre-commit-ci[bot]jsdillon
authored andcommitted
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent f3dd5f0 commit 36966c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

hera_filters/dspec.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2938,7 +2938,7 @@ def sparse_linear_fit_2D(
29382938
matrix (X^T W X) of the basis matrices. Prior to computing the inverse, the eigenvalues
29392939
of the Gramian matrix are regularized by adding a small value to the diagonal. This
29402940
value is calculated by computing the cumulative sum of the eigenvalues and selecting
2941-
the smallest value such that the cumulative sum of the largest eigenvalues is less than
2941+
the smallest value such that the cumulative sum of the largest eigenvalues is less than
29422942
1 - `eigenspec_threshold`. This helps to stabilize the computation of the inverse.
29432943
eigenspec_threshold : float, optional, default 1e-3
29442944
Regularization parameters for the eigenvalues of the Gramian matrix. This parameter
@@ -2983,11 +2983,11 @@ def sparse_linear_fit_2D(
29832983
# Start by computing separable weights for the two axes
29842984
with np.errstate(invalid='ignore'):
29852985
axis_1_wgts = np.nanmean(
2986-
np.where(weights == 0, np.nan, weights),
2986+
np.where(weights == 0, np.nan, weights),
29872987
axis=1, keepdims=True
29882988
)
29892989
axis_2_wgts = np.nanmean(
2990-
np.where(weights == 0, np.nan, weights / axis_1_wgts),
2990+
np.where(weights == 0, np.nan, weights / axis_1_wgts),
29912991
axis=0, keepdims=True
29922992
)
29932993
axis_1_wgts[~np.isfinite(axis_1_wgts)] = 0.0

0 commit comments

Comments
 (0)