Can anyone help me explain what is Machine Learning?

I have been googling for the subject and still do not understand what it is. Please help.

1) How could a Machine learn about information? By finding an equation of a pattern? or by having the user inputing a new information about the subject that the machine do not understand?

2) Please gives me a concrete example of Machine Learning.

Thanks in advance.

Recommended Answers

All 6 Replies

Machine learning can be all about implementing a neural network.

The best way I had machine learning explained to me was similar to this:

Lets say you want a computer to identify a color. Lets take "Red", or 255, 0, 0 (or some threshold of).
(NOTE: Of course, what you would write is an algorithm that looks at color and a specific threshold (say... "red") not always "red"... because that would just be silly, right?)

You write an algorithm that looks at pixel data, and returns a 1 or a 0: 1 being "YES! It's RED!" and 0 being "NO!" (or Yes! It's a thing, or no it's not!)

You then "train" your algorithm by giving it lots of variations on the color "RED" to include "Like Red" (again, to some threshold of)
You put this training system into separate computers, all of which take an input (your color) and an output (1 or 0)
You then make a program that takes in your color, sends the color randomly to a random number of these computers, and gives you the weighted average of their deduction of if the value is 1 or 0.

You can, then, make adjustments to how to "train" your machines by either letting them figure out variants on their own (by programming that in by giving it the ability to make assumptions, or some memory/database) or by manually saying "You got it right!" or "You got it wrong!" and giving it guided teaching (which it stores those responses instead of making its own assumptions).

While this is super duper simplistic - this is the heart of machine learning. You boil down a physical "thing" to a binary state, and you program machines in however complex a system you like to identify your "thing" (which can be very comlex: for example - a face. How do you identify a face? You have some machines process "eyes", some machines process a "nose", some machines process a "head on a body" some machines process a "mouth" or "teeth" -- and even then, those "machiens" can actually be another series of machines that break down that identification process into smaller digestible 1's and 0's. In the end, you get a weighted average of either a 1 or a 0, and you have the probability that you are looking at a "face." Which is why some machines can be tricked into what it thinks is a face because we give it components, but they may not be in the correct position, color, etc...).

That's about the best I got on it... Hope that helps..

Also, if anyone wants to expand or correct me, I would love to read it.

Ryan

commented: Great info. +0
commented: Really good answer! +0

Machine learning is an application of artificial intelligence (AI) that provides systems the ability to automatically learn and improve from experience without being explicitly programmed. Machine learning focuses on the development of computer programs that can access data and use it learn for themselves.
You can read more on AI and ML in this blog : https://blog.eduonix.com/?s=machine+learning

What is machine learning is a broader topic to cover for this answer.Hope these two explinations help you understand the very basics of ML

  1. Since you mentioned about equation and all , let the first explination be about that. So given some equation of a curve or line,it is common to find the points on that curve, i guess we all have done it in our high school.But suppose given some points ,to be more precise a lot of points, can we find a line or curve that can best fit the points?To be clear by fit, i do not mean pass through all points but be closer to all points like Regression in statistics. Linear regression which is one of the ML algorithms which works just like this.It find a best fit line for all the points.If this is not clear just move to next point
  2. This is much more of an overview of machine learning.Given a lot of samples along with their respective labels, we feed them into our machine learning algorithm and expect the algorithm to correctly label the items it has not seen before.
    Let me give you an example of a child, as most of the children fail to differtiate real food from non eatables like insects, plastic etc.how would you teach him/her to avoid eating insects.One way is that you probably show him a lot of eatables and allow to eat them and scould him/her when approaching to eat insects.This way the child will soon to know what is good to eat and what to avoid eating.
    This is not exactly how machine learning works but i guess you got an idea.
    If you are not satisfied with the explination here, check out this article for a more indetail explination What is machine learninig?

You cold also check out this article on the difference between machine learning and AI.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.