├── LICENSE ├── README.md ├── scripts ├── alpha_mtgp.m ├── get_mtgp_config.m ├── grad_neglog.m ├── init_mtgp_default.m ├── learn_mtgp.m ├── lowtri2vec_inchol.m ├── neglog.m ├── nmargl_mtgp.m ├── pos2ind_tri_inchol.m ├── predict_mtgp_all_tasks.m └── vec2lowtri_inchol.m ├── toy_example.m └── utils ├── generate_data.m ├── plot_confidence_interval.m └── plot_predictions.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/README.md -------------------------------------------------------------------------------- /scripts/alpha_mtgp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/scripts/alpha_mtgp.m -------------------------------------------------------------------------------- /scripts/get_mtgp_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/scripts/get_mtgp_config.m -------------------------------------------------------------------------------- /scripts/grad_neglog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/scripts/grad_neglog.m -------------------------------------------------------------------------------- /scripts/init_mtgp_default.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/scripts/init_mtgp_default.m -------------------------------------------------------------------------------- /scripts/learn_mtgp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/scripts/learn_mtgp.m -------------------------------------------------------------------------------- /scripts/lowtri2vec_inchol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/scripts/lowtri2vec_inchol.m -------------------------------------------------------------------------------- /scripts/neglog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/scripts/neglog.m -------------------------------------------------------------------------------- /scripts/nmargl_mtgp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/scripts/nmargl_mtgp.m -------------------------------------------------------------------------------- /scripts/pos2ind_tri_inchol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/scripts/pos2ind_tri_inchol.m -------------------------------------------------------------------------------- /scripts/predict_mtgp_all_tasks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/scripts/predict_mtgp_all_tasks.m -------------------------------------------------------------------------------- /scripts/vec2lowtri_inchol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/scripts/vec2lowtri_inchol.m -------------------------------------------------------------------------------- /toy_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/toy_example.m -------------------------------------------------------------------------------- /utils/generate_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/utils/generate_data.m -------------------------------------------------------------------------------- /utils/plot_confidence_interval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/utils/plot_confidence_interval.m -------------------------------------------------------------------------------- /utils/plot_predictions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebonilla/mtgp/HEAD/utils/plot_predictions.m --------------------------------------------------------------------------------