Non-parametric density estimator.
Project description
Mellon is a non-parametric density estimator based on the NearestNeighbors distribution.
Installation
To install with pip you can run:
pip install mellon
Documentation
Please read the documentation or use this basic tutorial notebook.
Basic Usage
import mellon
import numpy as np
X = np.random.rand(100, 10) # 10-dimensional state representation for 100 cells
Y = np.random.rand(100, 10) # arbitrary test data
model = mellon.DensityEstimator()
log_density_x = model.fit_predict(X)
log_density_y = model.predict(Y)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
mellon-1.0.1.tar.gz
(27.3 kB
view hashes)