Skip to content

Commit

Permalink
Add for 'iota'
Browse files Browse the repository at this point in the history
  • Loading branch information
CedricAllain committed May 16, 2023
1 parent 2d8c951 commit e044cfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions alphacsc/_z_encoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_z_encoder_for(X, D_hat, n_atoms, n_times_atom, n_jobs,
The number of parallel jobs.
solver : str
The solver to use for the z update. Options are
{{'l_bfgs' (default) | 'lgcd' | 'fista' | 'dicodile'}}.
{{'l_bfgs' (default) | 'lgcd' | 'fista' | 'ista' | 'dicodile'}}.
solver_kwargs : dict
Additional keyword arguments to pass to update_z_multi.
reg : float
Expand All @@ -63,7 +63,7 @@ def get_z_encoder_for(X, D_hat, n_atoms, n_times_atom, n_jobs,

assert reg is not None, 'reg value cannot be None.'

if solver in ['l-bfgs', 'lgcd', 'fista']:
if solver in ['l-bfgs', 'lgcd', 'fista', 'ista']:

return AlphaCSCEncoder(
X, D_hat, n_atoms, n_times_atom, n_jobs,
Expand Down
2 changes: 1 addition & 1 deletion alphacsc/convolutional_dictionary_learning.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
solver_z : str
The solver to use for the z update. Options are
{{'l_bfgs' (default) | 'lgcd', 'fista'}}.
{{'l_bfgs' (default) | 'lgcd', 'fista', 'ista'}}.
solver_z_kwargs : dict
Additional keyword arguments to pass to update_z_multi.
unbiased_z_hat : boolean
Expand Down

0 comments on commit e044cfd

Please sign in to comment.