Tag: Machine Learning

Deep Learning with PyTorch: Installing PyTorch and Covering the Basics

PyTorch is an open-source machine learning library. It is based on Torch library but specifically written for Python language. Recently PyTorch has been gaining much more traction and popularity for deep learning research and development alike. The best thing about PyTorch is that it is very python-like and intuitive. If you know the Python programming […] ...

k-Nearest Neighbor: A Practical Approach

In this article, we will take a practical approach to the k-Nearest Neighbor in machine learning. For implementation purposes of the k-Nearest Neighbor, we will use the Scikit-Learn library. We will try a classification problem using KNN. We will try the digit classification using the MNIST dataset. After all, before neural networks, traditional machine learning […] ...