I've recently set myself the goal of reading one academic paper a week relating to the ML/AI things i'm working on i'm my current role. To try help keep me honest and diligent in this regard, I've decided to get into the habit of jotting down some quick notes on each paper and every now … Continue reading Papers i’m reading #1
Category: machine-learning
KubeFlow Custom Jupyter Image (+ github for notebook source control)
I've been playing around a bit with KubeFlow a bit lately and found that a lot of the tutorials and examples of Jupyter notebooks on KubeFlow do a lot of the pip install and other sort of setup and config stuff in the notebook itself which feels icky. But, in reality, if you were working … Continue reading KubeFlow Custom Jupyter Image (+ github for notebook source control)
Multi-Variate, Multi-Step, LSTM for Anomaly Detection
This post will walk through a synthetic example illustrating one way to use a multi-variate, multi-step LSTM for anomaly detection. Imagine you have a matrix of k time series data coming at you at regular intervals and you look at the last n observations for each metric. A matrix of 5 metrics from period t to t-n One approach … Continue reading Multi-Variate, Multi-Step, LSTM for Anomaly Detection