├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── README.md ├── vb_examples.m ├── vb_linear_example.m ├── vb_linear_example_highdim.m ├── vb_linear_example_modelsel.m ├── vb_linear_example_sparse.m ├── vb_logit_example.m ├── vb_logit_example_coeff.m ├── vb_logit_example_highdim.m └── vb_logit_example_modelsel.m ├── paper.bib ├── paper.md ├── src ├── logdet.m ├── vb_linear_fit.m ├── vb_linear_fit_ard.m ├── vb_linear_pred.m ├── vb_logit_fit.m ├── vb_logit_fit_ard.m ├── vb_logit_fit_iter.m ├── vb_logit_pred.m └── vb_logit_pred_incr.m └── test ├── README.md ├── vb_linear_fit_ard_test.m ├── vb_linear_fit_test.m ├── vb_linear_pred_test.m ├── vb_logit_fit_ard_test.m ├── vb_logit_fit_iter_test.m ├── vb_logit_fit_test.m ├── vb_logit_pred_incr_test.m ├── vb_logit_pred_iter_test.m ├── vb_logit_pred_test.m └── vb_tests.m /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/vb_examples.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/examples/vb_examples.m -------------------------------------------------------------------------------- /examples/vb_linear_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/examples/vb_linear_example.m -------------------------------------------------------------------------------- /examples/vb_linear_example_highdim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/examples/vb_linear_example_highdim.m -------------------------------------------------------------------------------- /examples/vb_linear_example_modelsel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/examples/vb_linear_example_modelsel.m -------------------------------------------------------------------------------- /examples/vb_linear_example_sparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/examples/vb_linear_example_sparse.m -------------------------------------------------------------------------------- /examples/vb_logit_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/examples/vb_logit_example.m -------------------------------------------------------------------------------- /examples/vb_logit_example_coeff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/examples/vb_logit_example_coeff.m -------------------------------------------------------------------------------- /examples/vb_logit_example_highdim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/examples/vb_logit_example_highdim.m -------------------------------------------------------------------------------- /examples/vb_logit_example_modelsel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/examples/vb_logit_example_modelsel.m -------------------------------------------------------------------------------- /paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/paper.bib -------------------------------------------------------------------------------- /paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/paper.md -------------------------------------------------------------------------------- /src/logdet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/src/logdet.m -------------------------------------------------------------------------------- /src/vb_linear_fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/src/vb_linear_fit.m -------------------------------------------------------------------------------- /src/vb_linear_fit_ard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/src/vb_linear_fit_ard.m -------------------------------------------------------------------------------- /src/vb_linear_pred.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/src/vb_linear_pred.m -------------------------------------------------------------------------------- /src/vb_logit_fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/src/vb_logit_fit.m -------------------------------------------------------------------------------- /src/vb_logit_fit_ard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/src/vb_logit_fit_ard.m -------------------------------------------------------------------------------- /src/vb_logit_fit_iter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/src/vb_logit_fit_iter.m -------------------------------------------------------------------------------- /src/vb_logit_pred.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/src/vb_logit_pred.m -------------------------------------------------------------------------------- /src/vb_logit_pred_incr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/src/vb_logit_pred_incr.m -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/test/README.md -------------------------------------------------------------------------------- /test/vb_linear_fit_ard_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/test/vb_linear_fit_ard_test.m -------------------------------------------------------------------------------- /test/vb_linear_fit_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/test/vb_linear_fit_test.m -------------------------------------------------------------------------------- /test/vb_linear_pred_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/test/vb_linear_pred_test.m -------------------------------------------------------------------------------- /test/vb_logit_fit_ard_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/test/vb_logit_fit_ard_test.m -------------------------------------------------------------------------------- /test/vb_logit_fit_iter_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/test/vb_logit_fit_iter_test.m -------------------------------------------------------------------------------- /test/vb_logit_fit_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/test/vb_logit_fit_test.m -------------------------------------------------------------------------------- /test/vb_logit_pred_incr_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/test/vb_logit_pred_incr_test.m -------------------------------------------------------------------------------- /test/vb_logit_pred_iter_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/test/vb_logit_pred_iter_test.m -------------------------------------------------------------------------------- /test/vb_logit_pred_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/test/vb_logit_pred_test.m -------------------------------------------------------------------------------- /test/vb_tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrugowitschLab/VBLinLogit/HEAD/test/vb_tests.m --------------------------------------------------------------------------------