Latest library version: 1.0.20 (see Release notes for more info)
Introduction
The SGDLibrary is a pure-MATLAB library or toolbox of a collection of stochastic optimization algorithms. This solves an unconstrained minimization problem of the form, min f(x) = sum_i f_i(x).
The SGDLibrary is also operable on GNU Octave (Free software compatible with many MATLAB scripts).
Note that this SGDLibrary internally contains the GDLibrary.
Document
The document of SGDLibrary can be obtained from below;
./ - Top directory.
./README.md - This readme file.
./run_me_first.m - The scipt that you need to run first.
./demo.m - Demonstration script to check and understand this package easily.
|plotter/ - Contains plotting tools to show convergence results and various plots.
|tool/ - Some auxiliary tools for this project.
|problem/ - Problem definition files to be solved.
|sgd_solver/ - Contains various stochastic optimization algorithms.
|sgd_test/ - Some helpful test scripts to use this package.
|gd_solver/ - Contains various gradient descent optimization algorithms.
|gd_test/ - Some helpful test scripts using gradient descent algorithms to use this package.
First to do
Run run_me_first for path configurations.
%%First run the setup scriptrun_me_first;
Simplest usage example: 4 steps!
Just execute demo for the simplest demonstration of this package. This is the case of logistic regression problem.
%%Execute the demonstration scriptdemo;
The "demo.m" file contains below.
%%generate synthetic data % set number of dimensions
d =3;
% set number of samples
n =300;
% generate data
data =logistic_regression_data_generator(n, d);
%%define problem definitions
problem =logistic_regression(data.x_train, data.y_train, data.x_test, data.y_test);
%%perform algorithms SGD and SVRG
options.w_init =data.w_init;
options.step_init =0.01;
[w_sgd, info_sgd] =sgd(problem, options);
[w_svrg, info_svrg] =svrg(problem, options);
%%display cost/optimality gap vs number of gradient evaluationsdisplay_graph('grad_calc_count','cost', {'SGD', 'SVRG'}, {w_sgd, w_svrg}, {info_sgd, info_svrg});
Let take a closer look at the code above bit by bit. The procedure has only **4 steps**!
Step 1: Generate data
First, we generate datasets including train set and test set using a data generator function logistic_regression_data_generator().
The output include train set and test set and an initial value of the solution w.
d =3;
n =300;
data =logistic_regression_data_generator(n, d);
Step 2: Define problem
The problem to be solved should be defined properly from the supported problems. logistic_regression() provides the comprehensive
functions for a logistic regression problem. This returns the cost value by cost(w), the gradient by grad(w) and the hessian by hess(w) when given w.
These are essential for any gradient descent algorithms.
problem =logistic_regression(data.x_train, data.y_train, data.x_test, data.y_test);
Step 3: Perform solver
Now, you can perform optimization solvers, i.e., SGD and SVRG, calling solver functions, i.e., sgd() function and svrg() function after setting some optimization options.
They return the final solutions of w and the statistics information that include the histories of epoch numbers, cost values, norms of gradient, the number of gradient evaluations and so on.
Step 4: Show result
Finally, display_graph() provides output results of decreasing behavior of the cost values in terms of the number of gradient evaluations.
Note that each algorithm needs different number of evaluations of samples in each epoch. Therefore, it is common to use this number to evaluate stochastic optimization algorithms instead of the number of iterations.
For the calculation of "optimality gap", you need optimal solution w_opt beforehand by calling calc_solution() function of the problem definition function.
%%calculate optimal solution for optimality gap
w_opt =problem.calc_solution(1000);
options.f_opt =problem.cost(w_opt);
This case uses the full gradient descent solve gd() to obtain an optimal solution under max iteration 1000 with very precise tolerant stopping condition.
Then, you obtain the result of optimality gap by display_graph().
Additionally, in this case of logistic regression, the results of classification accuracy are calculated using the corresponding prediction function prediction() and accuracy of the problem definition function logistic_regression().
Furthermore, the classification accuracies are illustrated by display_classification_result() function that is written in "demo.m" like below;
You need specify additional options before executing solvers.
%%set options for convergence animation
options.max_epoch =100;
options.store_w =true;
Then, draw_convergence_animation() draws a convergence animation. Note that draw_convergence_animation() is executable when only the dimension of the parameters is 2.
Convergence behavior animation example (Linear regression problem)
"test_convergence_animation_demo.m" provides you an animation of convergence behaviors of algorithms. Please click the image below to see its animation.
License
The SGDLibrary is free and open source.
The code provided iin SGDLibrary should only be used for academic/research purposes.
The codes provided by original papers are included. (Big thanks !!!)
The codes ported from original python codes are included. (Big thanks !!!)
scr.m, cr_subsolver.m, subsamp_tr.m, tr_subsolver.m: Python codes are originally created by J. M. Kohler and A. Lucchi. These MATLAB codes are ported with original authors' big helps.
Third party files are included.
subsamp_newton.m: originally created by Peng Xu and Jiyan Yang in Subsampled-Newton. This is modifided to handle other problems like linear regression.
请发表评论