https://www.gravatar.com/avatar/2adfb1930aa9591ea756b0d94ca3603b?s=110

Yet Another Iteration

kNN Analysis on MNIST with 97% accuracy

Usually Yann LeCun’s MNIST database is used to explore Artificial Neural Network architectures for image recognition problem.

In the last post the use of a ANN (LeNet architecture) implemented using mxnet to resolve this classification problem.

But in this post, we’ll see that the MNIST problem isn’t a difficult one, only resolved by ANNs, analyzing the data set we can see that is possible, with a high degree of precision, resolving this classification problem with a simple k-nearest neighbors algorithm.

High Collinearity Effect in Regressions

Collinearity refers to the situation in which two or more predictor variables collinearity are closely related to one another. The presence of collinearity can pose problems in the regression context, since it can be difficult to separate out the individual effects of collinear variables on the response.

This R Notebook seeks to ilustrate some of the difficulties that can be result from a collinearity.