/fast-kde

An experiment in building fast Kernel Density Estimators (KDEs) in Python.

Primary LanguagePython

fast-kde

An experiment in building fast Kernel Density Estimators (KDEs) in Python.

The main goal of this project is to experiment in building fast numerical code that runs in Python, spanning the gamut of pure Python, numpy, numexpr, theano, pyopencl, Cython, and pure C. We are particularly interested in special cases where we are sampling the kernel density estimate on a regular grid in one and two dimensions -- an application that frequently appears when visualizing results. With regular samples, we can reduce memory access for compactly supported kernels (e.g., tophat; not Gaussian) which decreases runtime.

Objectives