Recently Clounce was carrying out some experiments with MNIST dataset and he wanted to glimpse at how the digits in this dataset looks like. So he thought of displaying them using ASCII art in a console window. What is the MNIST dataset? MNIST (http://yann.lecun.com/exdb/mnist/index.html) is a subset of NIST (https://www.nist.gov/srd/nist-special-database-19), a database for handwritten digits. … Continue reading Fun with MNIST dataset

The 3 most popular average algorithms are: Arithmetic Mean Median Mode In the previous articles the Arithmetic Mean and Mode have been covered. The last popular average algorithm the Median is covered in this article. Median average is when the middle value within a range is found. For example, consider a class of 5 students … Continue reading Median

When dealing with sparse data or data that is distributed towards the edges (U-Shaped sample), finding the Arithmetic Mean or Medium can provide wrong information about the data distribution. A way to calculate the average in such scenarios is to find where the data peaks exist. This method is called Mode. The mathematical formula above … Continue reading Mode