├── .codecov.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── dgplib ├── __init__.py ├── cascade.py ├── dsdgp.py ├── layers.py ├── multikernel_layers.py ├── multitask_dsdgp.py ├── specialized_kernels.py └── utils.py ├── doc └── notebooks │ ├── simple_example.ipynb │ ├── simple_example_multikernel.ipynb │ └── simple_example_multitask.ipynb ├── progress.md ├── roadmap.md ├── setup.py └── tests ├── __init__.py ├── test_cascade.py ├── test_dsdgp.py ├── test_layer.py ├── test_multikernel_layer.py ├── test_multitask_dsdgp.py └── test_specialized_kernels.py /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/README.md -------------------------------------------------------------------------------- /dgplib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/dgplib/__init__.py -------------------------------------------------------------------------------- /dgplib/cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/dgplib/cascade.py -------------------------------------------------------------------------------- /dgplib/dsdgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/dgplib/dsdgp.py -------------------------------------------------------------------------------- /dgplib/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/dgplib/layers.py -------------------------------------------------------------------------------- /dgplib/multikernel_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/dgplib/multikernel_layers.py -------------------------------------------------------------------------------- /dgplib/multitask_dsdgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/dgplib/multitask_dsdgp.py -------------------------------------------------------------------------------- /dgplib/specialized_kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/dgplib/specialized_kernels.py -------------------------------------------------------------------------------- /dgplib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/dgplib/utils.py -------------------------------------------------------------------------------- /doc/notebooks/simple_example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/doc/notebooks/simple_example.ipynb -------------------------------------------------------------------------------- /doc/notebooks/simple_example_multikernel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/doc/notebooks/simple_example_multikernel.ipynb -------------------------------------------------------------------------------- /doc/notebooks/simple_example_multitask.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/doc/notebooks/simple_example_multitask.ipynb -------------------------------------------------------------------------------- /progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/progress.md -------------------------------------------------------------------------------- /roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/roadmap.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_cascade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/tests/test_cascade.py -------------------------------------------------------------------------------- /tests/test_dsdgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/tests/test_dsdgp.py -------------------------------------------------------------------------------- /tests/test_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/tests/test_layer.py -------------------------------------------------------------------------------- /tests/test_multikernel_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/tests/test_multikernel_layer.py -------------------------------------------------------------------------------- /tests/test_multitask_dsdgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/tests/test_multitask_dsdgp.py -------------------------------------------------------------------------------- /tests/test_specialized_kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboustati/dgplib/HEAD/tests/test_specialized_kernels.py --------------------------------------------------------------------------------