nemos.solvers.list_available_algorithms#

nemos.solvers.list_available_algorithms()[source]#

List the available algorithms that can be used for fitting models.

To list the available backends for a given algorithm, see list_algo_backends.

To access an extended documentation about a specific solver, see nemos.solvers.get_solver_documentation.

Return type:

list[str]

Example

>>> import nemos as nmo
>>> nmo.solvers.list_available_algorithms()
['GradientDescent', 'ProximalGradient', 'LBFGS', 'BFGS', 'NonlinearCG', 'SVRG', 'ProxSVRG']