Skip to content

Commit

Permalink
flake8 format
Browse files Browse the repository at this point in the history
  • Loading branch information
anujanegi committed Jul 25, 2023
1 parent 28dd9b9 commit b55f319
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bsi_zoo/estimators.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ def _solve_reweighted_lasso(
n_positions = L_w.shape[1] // n_orient
lc = np.empty(n_positions)
for j in range(n_positions):
L_j = L_w[:, (j * n_orient) : ((j + 1) * n_orient)]
L_j = L_w[:, (j * n_orient): ((j + 1) * n_orient)]
lc[j] = np.linalg.norm(np.dot(L_j.T, L_j), ord=2)
coef_, active_set, _ = _mixed_norm_solver_bcd(
y,
Expand Down

0 comments on commit b55f319

Please sign in to comment.