https://github.com/aqibsaeed/anomaly-detection
Anomaly detection algorithm implementation in Python
https://github.com/aqibsaeed/anomaly-detection
anomalydetection machine-learning python
Last synced: 8 months ago
JSON representation
Anomaly detection algorithm implementation in Python
- Host: GitHub
- URL: https://github.com/aqibsaeed/anomaly-detection
- Owner: aqibsaeed
- License: mit
- Created: 2016-07-17T19:39:45.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2020-07-02T17:16:03.000Z (almost 6 years ago)
- Last Synced: 2024-12-11T12:12:04.424Z (over 1 year ago)
- Topics: anomalydetection, machine-learning, python
- Language: Jupyter Notebook
- Size: 152 KB
- Stars: 130
- Watchers: 16
- Forks: 132
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Anomaly Detection
Anomaly detection is the problem of identifying data points that don't conform to expected (normal) behaviour. Unexpected data points are also known as outliers and exceptions etc. Anomaly detection has crucial significance in the wide variety of domains as it provides critical and actionable information. For example, an anomaly in MRI image scan could be an indication of the malignant tumor or anomalous reading from production plant sensor may indicate faulty component.
This repository provide an anomaly detection algortihm based on estimation of gaussian distribution. This is a Python implementation of algorithm discussed by Andrew Ng in his course of Machine Learning on Coursera.