Implementation of Auto Associative Kernel Regression (AAKR)
Project description
aakr (Auto Associative Kernel Regression)
aakr is a Python implementation of the Auto-Associative Kernel Regression (AAKR). The algorithm is suitable for signal reconstruction, which can further be used for condition monitoring, anomaly detection etc.
Documentation is available at https://aakr.readthedocs.io.
Installation
pip install aakr
Quickstart
Given historical normal condition X_nc
examples and new observations X_obs
of size n_samples x n_features
, what values we expect to see in normal conditions for the new observations?
from aakr import AAKR
# Create AAKR model
aakr = AAKR()
# Fit the model with normal condition examples
aakr.fit(X_nc)
# Ask for values expected to be seen in normal conditions
X_obs_nc = aakr.transform(X_obs)
References
Jesse Myrberg (jesse.myrberg@gmail.com)
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
aakr-0.0.1a0.tar.gz
(5.5 kB
view details)
File details
Details for the file aakr-0.0.1a0.tar.gz
.
File metadata
- Download URL: aakr-0.0.1a0.tar.gz
- Upload date:
- Size: 5.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.1.0 requests-toolbelt/0.9.1 tqdm/4.55.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c089825df88e7b775c250ffebe5beb8f0995117f1466e0170253ac7ab0f5b6ca |
|
MD5 | 806798c9da4c33fd2c296c67aee55d7e |
|
BLAKE2b-256 | 4ed043b8f3add6e503cc7a5606b7968c721b57f61f36aa7f77c65535ffe6458d |