├── README.md ├── active_query.m ├── csp.m ├── csp_K.m ├── demo_active.m ├── demo_csp.m ├── demo_pareto.m ├── demo_sf.m ├── eval_rand.m ├── iris.data ├── load_wine.m ├── pareto_multiview.m ├── sf.m └── wine.data /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/README.md -------------------------------------------------------------------------------- /active_query.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/active_query.m -------------------------------------------------------------------------------- /csp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/csp.m -------------------------------------------------------------------------------- /csp_K.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/csp_K.m -------------------------------------------------------------------------------- /demo_active.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/demo_active.m -------------------------------------------------------------------------------- /demo_csp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/demo_csp.m -------------------------------------------------------------------------------- /demo_pareto.m: -------------------------------------------------------------------------------- 1 | clear; 2 | 3 | load_wine; 4 | 5 | U = pareto_multiview(L1,L2); -------------------------------------------------------------------------------- /demo_sf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/demo_sf.m -------------------------------------------------------------------------------- /eval_rand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/eval_rand.m -------------------------------------------------------------------------------- /iris.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/iris.data -------------------------------------------------------------------------------- /load_wine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/load_wine.m -------------------------------------------------------------------------------- /pareto_multiview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/pareto_multiview.m -------------------------------------------------------------------------------- /sf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/sf.m -------------------------------------------------------------------------------- /wine.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnaixgnaw/CSP/HEAD/wine.data --------------------------------------------------------------------------------