├── HFD ├── algorithms │ ├── cg_steihaug.m │ ├── conjgrad_1.m │ ├── momentum_sgd.m │ ├── subsampled_gn.m │ └── subsampled_tr_cg.m ├── cifar_classification.m ├── datasets │ └── mnist_all.mat ├── download_cifar10.sh ├── mnist_autoencoder.m ├── model │ ├── compute_gauss_newton.m │ └── compute_model.m └── utils │ ├── getClassLabels.m │ └── parsave.m ├── README.md └── nls ├── algorithms ├── cg_steihaug.m ├── cubic_solver.m ├── lbfgs.m └── subsampled_blc.m ├── blc_demo.m ├── download_ijcnn1.sh ├── problem ├── blc_eval.m ├── compute_blc_gn_diag.m ├── compute_blc_gradient.m ├── compute_blc_hessian_diag.m ├── compute_blc_loss.m └── sigmoid.m └── utils ├── libsvmread.mexa64 ├── libsvmread.mexmaci64 └── libsvmread.mexw64 /HFD/algorithms/cg_steihaug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/algorithms/cg_steihaug.m -------------------------------------------------------------------------------- /HFD/algorithms/conjgrad_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/algorithms/conjgrad_1.m -------------------------------------------------------------------------------- /HFD/algorithms/momentum_sgd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/algorithms/momentum_sgd.m -------------------------------------------------------------------------------- /HFD/algorithms/subsampled_gn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/algorithms/subsampled_gn.m -------------------------------------------------------------------------------- /HFD/algorithms/subsampled_tr_cg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/algorithms/subsampled_tr_cg.m -------------------------------------------------------------------------------- /HFD/cifar_classification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/cifar_classification.m -------------------------------------------------------------------------------- /HFD/datasets/mnist_all.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/datasets/mnist_all.mat -------------------------------------------------------------------------------- /HFD/download_cifar10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/download_cifar10.sh -------------------------------------------------------------------------------- /HFD/mnist_autoencoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/mnist_autoencoder.m -------------------------------------------------------------------------------- /HFD/model/compute_gauss_newton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/model/compute_gauss_newton.m -------------------------------------------------------------------------------- /HFD/model/compute_model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/model/compute_model.m -------------------------------------------------------------------------------- /HFD/utils/getClassLabels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/utils/getClassLabels.m -------------------------------------------------------------------------------- /HFD/utils/parsave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/HFD/utils/parsave.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/README.md -------------------------------------------------------------------------------- /nls/algorithms/cg_steihaug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/algorithms/cg_steihaug.m -------------------------------------------------------------------------------- /nls/algorithms/cubic_solver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/algorithms/cubic_solver.m -------------------------------------------------------------------------------- /nls/algorithms/lbfgs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/algorithms/lbfgs.m -------------------------------------------------------------------------------- /nls/algorithms/subsampled_blc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/algorithms/subsampled_blc.m -------------------------------------------------------------------------------- /nls/blc_demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/blc_demo.m -------------------------------------------------------------------------------- /nls/download_ijcnn1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/download_ijcnn1.sh -------------------------------------------------------------------------------- /nls/problem/blc_eval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/problem/blc_eval.m -------------------------------------------------------------------------------- /nls/problem/compute_blc_gn_diag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/problem/compute_blc_gn_diag.m -------------------------------------------------------------------------------- /nls/problem/compute_blc_gradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/problem/compute_blc_gradient.m -------------------------------------------------------------------------------- /nls/problem/compute_blc_hessian_diag.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/problem/compute_blc_hessian_diag.m -------------------------------------------------------------------------------- /nls/problem/compute_blc_loss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/problem/compute_blc_loss.m -------------------------------------------------------------------------------- /nls/problem/sigmoid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/problem/sigmoid.m -------------------------------------------------------------------------------- /nls/utils/libsvmread.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/utils/libsvmread.mexa64 -------------------------------------------------------------------------------- /nls/utils/libsvmread.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/utils/libsvmread.mexmaci64 -------------------------------------------------------------------------------- /nls/utils/libsvmread.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-xp/Non-Convex-Newton/HEAD/nls/utils/libsvmread.mexw64 --------------------------------------------------------------------------------