pub type FistaOptimizer = ProximalGradientOptimizer;Expand description
Accelerated Proximal Gradient Method (FISTA)
Aliased Type§
pub struct FistaOptimizer {
pub max_iter: usize,
pub tol: f64,
pub step_size: Option<f64>,
pub use_line_search: bool,
pub accelerated: bool,
pub beta: f64,
pub sigma: f64,
}Fields§
§max_iter: usizeMaximum number of iterations
tol: f64Convergence tolerance
step_size: Option<f64>Initial step size
use_line_search: boolWhether to use line search for step size
accelerated: boolWhether to use acceleration (FISTA)
beta: f64Backtracking line search parameters
sigma: f64