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.1.dev6.tar.gz
(4.4 kB
view details)
File details
Details for the file aakr-0.0.1.dev6.tar.gz
.
File metadata
- Download URL: aakr-0.0.1.dev6.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/51.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75467647ec30b8afcae9e1b2b6eda63e52368c0546b0a9efee07bb522c9f302a |
|
MD5 | 1826eb0e1c33f301c3e0cc016f1a40f4 |
|
BLAKE2b-256 | 92ec24812d9746c0f57eba63ea4f7157c88ebfcc7b0e413e8f99e3a8b9a7ade9 |