Technical

Mostly Machine Learning and other Computer Science related topics.

The Dissected Attention Network

15 minute read

This notebook is based on the Pytorch “Translation with a Sequence to Sequence Network and Attention” tutorial by Sean Robertson. Most of the code is taken f...

An RNN that learns to talk like you

14 minute read

I would like to share a personal project I am working on, that uses sequence-to-sequence models to reply to messages in a similar way to how I would do it (i...

Bias versus Variance Explained

3 minute read

As most things in this blog will be, this entry attempts to explain bias vs variance the way that I found it to be the most clear and enlightening.

How to write an LL(1) parser

9 minute read

Let’s have a look at how to build an LL(1) parser and what considerations we need to make when writing an LL(1) grammar.