Implementing Fisher’s LDA from Scratch in Python

As mentioned above, Fisher’s LDA is a dimension reduction technique. Such techniques can primarily be used to reduce the dimensionality for high-dimensional data. People do this for multiple reasons – dimension reduction as feature extraction, dimension r… Read more

Similar

Memory Mapping with Python

Before I start this week’s “byte” (which is my first experiment with a series actually!) I want to thank everyone who made the last post so successful. Nothing gives me more pleasure than to see people having fun with something I wrote. That is the greate... (more…)

Read more »

Reproducible Python Bytecode

Some Linux distributions (like Alpine and Arch Linux) are shipping something called “python bytecode” in their packages. It’s stored in .pyc files and is generated during the package build. They’re stored in __pycache__ folders and can be seen here: (more…)

Read more »