Python matmul() vs einsum()
A comparison of Python's matmul operator and NumPy/PyTorch einsum for tensor contraction, covering theoretical background and practical case studies relevant to ML workloads.
Read More
Covariance Shift and Inductive Priors
An outline of covariance shift and inductive priors in machine learning, touching on regularization techniques including dropout, label smoothing, and the distinction between regularization and normalization.
Read More
Python Iterators and Generators
A concise reference on Python iterators and generators — the protocol-based lazy-evaluation primitives underpinning memory-efficient iteration in Python.
Read More
Transformer distiled, Part 2 of 2
Part two of the Transformer deep-dive, covering regularization, the distinction between self-attention and cross-attention, and the choice between adding and concatenating positional encodings.
Read More
Python Comprehension vs map()
The comprehension techiques for the data types `list`, `dict` and `set` append values to new data objects. They can be used to replace loops with `for` and functions like `map` and `filter`.
Read More
Static-sites on GH-Pages
A reference survey of static-site options for GitHub Pages, comparing small and full Jekyll themes, Gatsby, Sphinx, and ReadTheDocs with links to each tool.
Read More