Tensorflow

Timeseries anomaly detection using an Autoencoder

Download this notebook Based on this tutorial by pavithrasv This notebook demonstrates how you can use a reconstruction convolutional autoencoder model to detect anomalies in timeseries data. First we import tensorflow and other relevant packages. import numpy as np import pandas as pd from tensorflow import keras from tensorflow.keras import layers from matplotlib import pyplot as plt 2022-09-28 12:22:09.199724: I tensorflow/core/platform/cpu_feature_guard.cc:193] This TensorFlow binary is optimized with oneAPI Deep Neural Network Library (oneDNN) to use the following CPU instructions in performance-critical operations: AVX2 FMA To enable them in other operations, rebuild TensorFlow with the appropriate compiler flags.