fhswf / MLPro

MLPro - The Integrative Middleware Framework for Standardized Machine Learning in Python
https://mlpro.readthedocs.io/
Apache License 2.0
13 stars 4 forks source link

OA-Streams: Anomaly Prediction - Approach #1 #750

Open steveyuwono opened 1 year ago

steveyuwono commented 1 year ago

Description/Motivation Anomaly prediction can be used to predict an anomaly before it occures. One of the applications is predictive maintenance.

One approach to solve this problem is to combine our standard for anomaly detection in combination with a new type of tasks called 'instance predictor'. The latter one generates n imaginary future instances and forwards these as a list to the subsequent anomaly detector. It actually implements a mapping like

i(t) -> ( i(t), i(t+1), i(t+2),..., i(t+n-1) )

while the first entry is always the current real instance i(t). The anomaly detector needs to turn off it's own adaptation before processing the imaginary instances ( i(t+1), i(t+2),..., i(t+n-1) ) to avoid adaptation on pseudo data.

Task list

See also

886

885

detlefarend commented 12 months ago

Today we ( @steveyuwono, @syamrajsatheesh ) discussed an approach based on our (slightly extended) standard for anomaly detection combined with a new type of task called 'instance predictor'...

Image