Skip to main content

Mixture Models for anomaly detection

Project description

anomix

What is it?

anomix is a python package for estimating, and simulating uni-variate mixture models. We primarily use Expectation Maximization (EM) for parameter estimation. anomix is specifically adapted to anomaly detection as well, estimating probabilities of observing given data, relying on the component distributions.

anomix was primarily built with anomaly detection in mind, to uncover samples in data that appear to be unlikely given the data modeled as mixtures of a given univariate distributions.

The models have built in plotting mechanisms once trained ot the data that can be extended to support more specific figure requirements.

Why?

EM

Expectation Maximization has some nice properties, with a guarantee to converge on the maximum likelihood estimate of the parameters. Also, for completeness in the python ecosystem, there are a several bayesian mixture modeling packages but none seem to rely on EM. There also seems to be a similar package in mixem, which implements much of the same EM fitting arcitecture.

Why anomalies?

Unsupervised anomaly detection is an increasingly important domain within the larger ML and statistical learning literature (citation). There is a statistical literature that we can explore to construct well founded probability estimates of the tails and the anomalies. This work extends previous work in open source python packages for EM models into the domain of anomaly detection.

Example

A simple example would be to imagine the sampled heights of 18 year-olds, and of 5 year-olds. The heights can be expected to be well represented as a mixture of two normals, with location parameters of 43 and 67 (inches), and standard deviations of 1.5 and 3.

from anomix.models.models import NormalMixtureModel
height_model = NormalMixtureModel()
height_model.preset(weights=[.5,.5],loc=[43,67],scale=[1.5,3])

OR by estimation

from anomix.models.models import NormalMixtureModel
from numpy.random import normal
height_model = NormalMixtureModel()
data = normal(loc=[43, 67],scale=[1.5, 3], size=500).flatten()
height_model.fit(data)
f, ax = height_model.plot_pdf()

image-to-this

Then, we observe a new batch of individuals - a 5th grade classroom, with an average of 55 and a standard deviation of 3. We can test to see which of these new heights are anomalous given our model.

new_data = normal(loc=55, scale=3, size=30)
anomalous = height_model.predict_anomaly(new_data, threshold=.95)

And we can overlay this on our pdf:

f,axes = plt.subplots(1,2, sharey=True, figsize=(15,8))
f, ax1 = height_model.plot_pdf(show=False, fig_ax=(f, axes[0]))
f, ax2 = height_model.plot_pdf(show=False, fig_ax=(f, axes[1]))
_,_,s0 = ax2.hist(new_data, density=True,alpha=.5)
s1 = ax2.scatter(x=new_data[anomalous], y=np.zeros_like(new_data[anomalous]), c='red', marker=2,s=100, label='Anomalous')
s2 = ax2.scatter(x=new_data[~anomalous], y=np.zeros_like(new_data[~anomalous]), c='green', marker=2,s=100, label='Non-Anomalous')
ax2.legend([s0, s1,s2],['new-data','Anomaly','Non-Anomaly'])
plt.show()

image-to-this

Distributions Supported

  • Normal
  • LogNormal
  • Exponential
  • Cauchy(*)
  • Students T (*)
  • Binomial
  • Poisson
  • Geometric
  • ZeroInflatedNormal
  • Zeta/Zipf(*)

(*) means non-EM based parameter estimation

Installation

Compile from source

git clone <this url>

pip install . -e anomix

Download from pypi and install using pip

pip install anomix

TODO: Register on pypi

Contributing

  • We want to continue to add new models. Just replicate the model structures within 'univariate', implement all abstract classes.
  • We are considering mixtures with implementing multivariate data. See the branch 'multivariate' for the work that was started there

Future improvements

  • more anomaly prediction options
  • more tests and code coverage
  • more docs
  • travis yaml? (not sure who this is but i see it on many projects its useful haha)
  • add [smm] option to pip install, in case user does not want the Students T Mixture Model
    • pip install anomix[em] maybe installs only the EM ones? (aka not the cauchy, zeta, smm)

other potential methods of verifying the estimates:

  • variance of parameter estimate is approx normal with variance ~ 1/n
    • could run a bunch of data simulations and estimations to observe the variance of the estimator is normal around the true estimate

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

anomix-0.2.7.tar.gz (23.8 kB view details)

Uploaded Source

File details

Details for the file anomix-0.2.7.tar.gz.

File metadata

  • Download URL: anomix-0.2.7.tar.gz
  • Upload date:
  • Size: 23.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.0 CPython/3.9.5

File hashes

Hashes for anomix-0.2.7.tar.gz
Algorithm Hash digest
SHA256 74c61c6b6d9485803a8ecec832f22a7ae55975715e315f3107976df11f268881
MD5 e08748cafeec76f347a75dfe4f472413
BLAKE2b-256 5ff777a939c7ab03e99e22d2e920464de435a98ba582a9bc07dfc1e9984f9375

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page