How To Implement Learning Vector Quantization (LVQ) From Scratch With Python
Last Updated on August 13, 2019 A limitation of k-Nearest Neighbors is that you must keep a large database of training examples in order to make predictions. The Learning Vector Quantization algorithm addresses this by learning a much smaller subset of patterns that best represent the training data. In this tutorial, you will discover how to implement the Learning Vector Quantization algorithm from scratch with Python. After completing this tutorial, you will know: How to learn a set of codebook […]
Read more