├── README.md ├── __init__.py ├── demos ├── Tutorial -- Double Well dynamics.ipynb └── Tutorial --Van der Pol's dynamics with spike train observations.ipynb ├── inference.py ├── kernels.py ├── likelihoods.py ├── linkfunctions.py ├── mappings.py ├── models.py ├── modules.py ├── quadrature.py ├── requirements.txt ├── settings.py ├── transition.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demos/Tutorial -- Double Well dynamics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/demos/Tutorial -- Double Well dynamics.ipynb -------------------------------------------------------------------------------- /demos/Tutorial --Van der Pol's dynamics with spike train observations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/demos/Tutorial --Van der Pol's dynamics with spike train observations.ipynb -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/inference.py -------------------------------------------------------------------------------- /kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/kernels.py -------------------------------------------------------------------------------- /likelihoods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/likelihoods.py -------------------------------------------------------------------------------- /linkfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/linkfunctions.py -------------------------------------------------------------------------------- /mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/mappings.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/models.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/modules.py -------------------------------------------------------------------------------- /quadrature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/quadrature.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/settings.py -------------------------------------------------------------------------------- /transition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/transition.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gatsby-sahani/gp-sde/HEAD/utils.py --------------------------------------------------------------------------------