├── .gitignore ├── Adult.mat ├── Adult_L2.png ├── Interface.cpp ├── LICENSE ├── RCV1_L2.png ├── README.md ├── blackbox.cpp ├── blackbox.hpp ├── demo_dense.m ├── demo_sparse.m ├── grad_desc_dense.cpp ├── grad_desc_dense.hpp ├── grad_desc_sparse.cpp ├── grad_desc_sparse.hpp ├── least_square.cpp ├── least_square.hpp ├── logistic.cpp ├── logistic.hpp ├── mex_all.m ├── rcv1_train.binary.mat ├── regularizer.cpp ├── regularizer.hpp ├── svm.cpp ├── svm.hpp └── utils.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/.gitignore -------------------------------------------------------------------------------- /Adult.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/Adult.mat -------------------------------------------------------------------------------- /Adult_L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/Adult_L2.png -------------------------------------------------------------------------------- /Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/Interface.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/LICENSE -------------------------------------------------------------------------------- /RCV1_L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/RCV1_L2.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/README.md -------------------------------------------------------------------------------- /blackbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/blackbox.cpp -------------------------------------------------------------------------------- /blackbox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/blackbox.hpp -------------------------------------------------------------------------------- /demo_dense.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/demo_dense.m -------------------------------------------------------------------------------- /demo_sparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/demo_sparse.m -------------------------------------------------------------------------------- /grad_desc_dense.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/grad_desc_dense.cpp -------------------------------------------------------------------------------- /grad_desc_dense.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/grad_desc_dense.hpp -------------------------------------------------------------------------------- /grad_desc_sparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/grad_desc_sparse.cpp -------------------------------------------------------------------------------- /grad_desc_sparse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/grad_desc_sparse.hpp -------------------------------------------------------------------------------- /least_square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/least_square.cpp -------------------------------------------------------------------------------- /least_square.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/least_square.hpp -------------------------------------------------------------------------------- /logistic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/logistic.cpp -------------------------------------------------------------------------------- /logistic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/logistic.hpp -------------------------------------------------------------------------------- /mex_all.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/mex_all.m -------------------------------------------------------------------------------- /rcv1_train.binary.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/rcv1_train.binary.mat -------------------------------------------------------------------------------- /regularizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/regularizer.cpp -------------------------------------------------------------------------------- /regularizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/regularizer.hpp -------------------------------------------------------------------------------- /svm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/svm.cpp -------------------------------------------------------------------------------- /svm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/svm.hpp -------------------------------------------------------------------------------- /utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jnhujnhu/VR-SGD/HEAD/utils.hpp --------------------------------------------------------------------------------