PySAD is an open-source python framework for anomaly detection on streaming multivariate data.
Project description
Python Streaming Anomaly Detection (PySAD)
PySAD is an open-source python framework for anomaly detection on streaming multivariate data.
Features
Online Anomaly Detection
PySAD provides methods for online/sequential anomaly detection, i.e. anomaly detection on streaming data, where model updates itself as a new instance arrives.
Resource-Efficient
Streaming methods efficiently handle the limitied memory and processing time requirements of the data streams so that they can be used in near real-time. The methods can only store an instance or a small window of recent instances.
Complete
PySAD contains stream simulators, evaluators, preprocessors, statistic trackers, postprocessors, probability calibrators and more. In addition to streaming models, PySAD also provides integrations for batch anomaly detectors of the PyOD so that they can be used in the streaming setting.
Comprehensive
PySAD serves models that are specifically designed for both univariate and multivariate data. Furthermore, one can experiment via PySAD in supervised, semi-supervised and unsupervised setting.
User Friendly
Users with any experience level can easily use PySAD. One can easily design experiments and combine the tools in the framework. Moreover, the existing methods in PySAD are easy to extend.
Free and Open Source Software (FOSS)
PySAD is distributed under BSD License 2.0 and favors FOSS principles.
Installation
The PySAD framework can be installed via:
pip install -U pysad
Alternatively, you can install the library directly using the source code in Github repository by:
git clone https://github.com/selimfirat/pysad.git
cd pysad
pip install .
Required Dependencies:
Python 3.10+
numpy==2.0.2
scikit-learn==1.5.2
scipy==1.13.1
pyod==2.0.5
combo==0.1.3
Optional Dependencies:
rrcf==0.4.3 (Only required for pysad.models.robust_random_cut_forest.RobustRandomCutForest)
PyNomaly==0.3.3 (Only required for pysad.models.loop.StreamLocalOutlierProbability)
mmh3==2.5.1 (Only required for pysad.models.xstream.xStream)
pandas==2.2.3 (Only required for pysad.utils.pandas_streamer.PandasStreamer)
jax>=0.6.1 (Only required for pysad.models.inqmad.Inqmad; required for NumPy 2.0+ compatibility)
jaxlib>=0.6.1 (Only required for pysad.models.inqmad.Inqmad; required for NumPy 2.0+ compatibility)
Examples
Quick Start
Here’s a simple example showing how to use PySAD for anomaly detection on streaming data:
# Import modules.
from pysad.evaluation import AUROCMetric
from pysad.models import LODA
from pysad.utils import Data
model = LODA() # Init model
metric = AUROCMetric() # Init area under receiver-operating- characteristics curve metric
streaming_data = Data().get_iterator("arrhythmia.mat") # Get data streamer.
for x, y_true in streaming_data: # Stream data.
anomaly_score = model.fit_score_partial(x) # Fit the instance to model and score the instance.
metric.update(y_true, anomaly_score) # Update the AUROC metric.
# Output the resulting AUROCMetric.
print(f"Area under ROC metric is {metric.get()}.")
Quick Links
Contributors
We thank all our contributors for their valuable input and efforts to make PySAD better!
Versioning
Semantic versioning is used for this project.
License
This project is licensed under the BSD License 2.0.
Citing PySAD
If you use PySAD for a scientific publication, please cite the following paper:
@article{pysad,
title={PySAD: A Streaming Anomaly Detection Framework in Python},
author={Yilmaz, Selim F and Kozat, Suleyman S},
journal={arXiv preprint arXiv:2009.02572},
year={2020}
}
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
Built Distribution
File details
Details for the file pysad-0.3.4.tar.gz
.
File metadata
- Download URL: pysad-0.3.4.tar.gz
- Upload date:
- Size: 59.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
59a2146405c9ddb8f73cfda49c7c52137c2bce7934a42ecd171f1ff6daf29238
|
|
MD5 |
db731d534f2cde091606f89ff12312eb
|
|
BLAKE2b-256 |
797976de7ab29f76a77d8057933ed7de8336a29badcf82d3e707094e73092cfb
|
File details
Details for the file pysad-0.3.4-py3-none-any.whl
.
File metadata
- Download URL: pysad-0.3.4-py3-none-any.whl
- Upload date:
- Size: 69.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
5d9a90e6c4ff3ee86508bd41c8a016d2595097244730a99778bf91bda2f0b067
|
|
MD5 |
511574f8d001814c922550f48a7cc58f
|
|
BLAKE2b-256 |
9ad3049f4a22ce11e88035f4ddcb10e17bfbd3744e8f111c1be8732f2c74f852
|