You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We compare **TR**, **R2N**, and **LM** from our library.
170
+
We compare **TR**, **R2N**, **LM**and **LMTR** from our library.
171
171
172
172
We report the following solver statistics in the table: the convergence status of each solver, the number of evaluations of $f$, the number of evaluations of $\nabla f$, the number of proximal operator evaluations, the elapsed time in seconds and the final objective value.
173
173
On the SVM and NNMF problems, we use limited-memory SR1 and BFGS Hessian approximations, respectively.
@@ -180,10 +180,12 @@ The subproblem solver is **R2**.
180
180
All methods successfully reduced the optimality measure below the specified tolerance of $10^{-4}$, and thus converged to an approximate first-order stationary point.
181
181
Note that, the final objective values differ due to the nonconvexity of the problems.
182
182
183
-
-**SVM with $\ell^{1/2}$ penalty:****R2N** is the fastest, requiring the fewest function and gradient evaluations compared to **TR**.
183
+
-**SVM with $\ell^{1/2}$ penalty:****R2N** is the fastest, requiring the fewest gradient evaluations compared to all the other solvers.
184
184
However, it requires more proximal evaluations, but these are inexpensive.
185
-
**LM** requires the fewest function evaluations, but many gradient evaluations, and is the slowest.
186
-
-**NNMF with constrained $\ell_0$ penalty:****TR** is the fastest, and requires a fewer number of function and gradient evaluations than **R2N**. **LM** is competitive in terms of function calls but incurs many Jacobian–vector products; it nevertheless achieves the lowest objective value.
185
+
**LMTR** and **LM** require the fewest function evaluations, but incur many Jacobian–vector products, and are the slowest.
186
+
Note that here, **LMTR** achieves the lowest objective value.
187
+
-**NNMF with constrained $\ell_0$ penalty:****LMTR** is the fastest, and requires a fewer number of function evaluations than all the other solvers. Followed by **TR** which is the second fastest and requires the fewest gradient evaluations, however it achieves the highest objective value.
188
+
Note that both **LMTR** and **LM** achieve the lowest objective value.
187
189
188
190
Additional tests (e.g., other regularizers, constraint types, and scaling dimensions) have also been conducted, and a full benchmarking campaign is currently underway.
0 commit comments