Skip to main content

Posts

Showing posts with the label Kmeans

K-means using ‘seed-randint-numpy’

K-means classification K-means, a simple Machine learning algorithm used for classification purposes. Machine learning is an awesome field, full of interesting topics and scenarios to study. While starting in this track one of the basics we study is classifiers, these things can be complex as hell and also easy as watching Tom chasing Jerry on television. I have implemented the K-means with a simple NumPy library of python 3. It’s a good start for someone who is started to learn or teaching this classifier. No Oop used, just some function call which intern makes some more function calls. View the full code in my GitHub repository follow this link K-means notebook