Skip to main content

Posts

Showing posts with the label ML

The Ethical dilemma!!

  What is it?     Artificial intelligence has come a long way. They can now imitate human responses. chat GPT has now greatly impacted post-covid society which is still recovering from it. From the seminal paper of Alan Turing's " Computing Machinery and Intelligence" to enjoying mindful conversations with a chatbot this is where we need to ask is it required? yes, chasing the low-cost efficient lifestyle; we may say we need it. the hidden meaning is by how much. we already use a lot of technological miracles. They are considered home appliances these days, these home appliances have more computing power than the spacecraft that took humans to the moon. So the next question is......  Why is it? We don't need the technology for our survival. during the cold war, we created weapons that can destroy places that we didn't even want to destroy. most of the geopolitical escalations have been de-escalated because two nations with nuclear power were involved. So what are ...

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