├── .gitignore ├── algo1.py ├── helpers.py ├── ionosphere.data ├── kernel_helpers.py └── run_simpleMKL_for_ionosphere.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /algo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtrowbridge/simple-mkl-python/HEAD/algo1.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtrowbridge/simple-mkl-python/HEAD/helpers.py -------------------------------------------------------------------------------- /ionosphere.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtrowbridge/simple-mkl-python/HEAD/ionosphere.data -------------------------------------------------------------------------------- /kernel_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtrowbridge/simple-mkl-python/HEAD/kernel_helpers.py -------------------------------------------------------------------------------- /run_simpleMKL_for_ionosphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gjtrowbridge/simple-mkl-python/HEAD/run_simpleMKL_for_ionosphere.py --------------------------------------------------------------------------------