OeSNN-UAD anomaly detector implementation for Python.
Project description
Online evolutionary Spiking Neural Network unsupervised anomaly detector
Description
Python implementation of OeSNN-UAD model. Model finds anomalies in one dimensional data streams. Theoretical basics about this model could be find here: https://arxiv.org/pdf/1912.08785.pdf.
Dependencies
- numpy
- PyEMD (pip install EMD-signal)
Package instalation
To install package for python you should type in terminal:
pip install OeSNN-AD
Usage
Our model require from data stream to be numpy array. Additional model parameters are passed as arguments in object constructor.
The following code snippet shows package basic usage.
from oesnn_ad import OeSNNAD
import numpy as np
data_stream = np.array([1, 2, 3, 4, 5])
model = oesnn_ad(data_stream)
results = model.predict()
Parameters
The following table shows model parameters and their values range.
| Parameter | Default value | Minimal value | Maximum value |
|---|---|---|---|
| window_size | 100 | 1 | - |
| num_in_neurons | 10 | 1 | - |
| num_out_neurons | 50 | 1 | - |
| ts_factor | 1000 | 0 | - |
| mod | 0.6 | 0 | 1 |
| c_factor | 0.6 | 0 | 1 |
| epsilon | 2 | 2 | - |
| ksi | 0.9 | 0 | 1 |
| sim | 0.15 | 0 | - |
| beta | 1.6 | 0 | - |
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file OeSNN-AD-1.0.1.tar.gz.
File metadata
- Download URL: OeSNN-AD-1.0.1.tar.gz
- Upload date:
- Size: 13.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
841a4d09286fa0f98812ea8445444e06f0fcc4d90ccbb3aca92b9b323f523789
|
|
| MD5 |
124b6a67755a06f25edba4592659df3b
|
|
| BLAKE2b-256 |
a442f614a49315e1b4e5a1f5ea590e8897f5cd6ea3e546399c80bbcc2d4d51a6
|
File details
Details for the file OeSNN_AD-1.0.1-py3-none-any.whl.
File metadata
- Download URL: OeSNN_AD-1.0.1-py3-none-any.whl
- Upload date:
- Size: 18.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f74279bf9f91810305bda83851be353e3eac86ef73bc27b69c67d4739096ee48
|
|
| MD5 |
21e3196cd4910badeb37a98c741c574d
|
|
| BLAKE2b-256 |
711e281b55c78cc3df76c8fd3205ce6a71db687443cfa54144986ce384832647
|