Using LLMs Locally with LM Studio.

Yew, LM Studio provides an easy to use GUI to try and test several models because it has a search to discover new models within the tool. It allows people to locally run and download GGUF models. These models are usually available quantized which requires a lot less memory. Quantized models just mean they represent… Continue reading Using LLMs Locally with LM Studio.

Setting Up Your Data Science Environment on Apple Mac Silicon: A Step-by-Step Guide with MLX Installation.

Namast, Will keep this one short and sweet. Boot up your Mac (book, mini, studio, etc.) Go here: https://brew.sh/ What is it? It’s a package manager that lets you install things via terminal easily. Install via terminal by copy pasting their install Homebrew command. We’ll use it to install our Python environment. You can use… Continue reading Setting Up Your Data Science Environment on Apple Mac Silicon: A Step-by-Step Guide with MLX Installation.

Fashion MNIST and why it’s better than MNIST for modern Computer Vision

Hey. Many people are familiar with MNIST, if you aren’t then it is a dataset consisting of handwritten digits from 0 to 9. It stands for Modified National Institute of Standards and Technology. It’s frequently used in training computer vision models to benchmark various classification algorithms. Grad projects and research papers alike use it to… Continue reading Fashion MNIST and why it’s better than MNIST for modern Computer Vision

Unsupervised machine learning to cluster user data

Ohaio, It is interesting to analyse segments created by algorithms. Product managers and marketers will find it a somewhat unbiased way to make sense of customer data. The algorithms can work well but it helps to have a sufficient grasp of statistics and understand the limitations of each model. I thought it would be useful… Continue reading Unsupervised machine learning to cluster user data

Robust Principal Component Analysis for everyone

Bonjour Most people have heard of Principal Component Analysis. It was the last thing I learned and perhaps many people learn in their introductory linear algebra course at university. I’ve had to use it plenty of times to reduce dimensions when staring at a dataset with too many columns. Many people are satisfied with vanilla… Continue reading Robust Principal Component Analysis for everyone