Machine Learning is like Jesus, It's everywhere...
There are several algorithms that improve performance on a particular task with experience, that's it. By the way, if anyone asked, that was the definition of Machine Learning. The thing that computer systems can actually increase their performance or learn tasks is what AI is driven by.
Machine Learning is basically divided into 3 categories, viz, Supervised Learning, Unsupervised Learning, and Reinforcement Learning.
Supervised Learning is learning from a training set of labeled examples provided by a knowledgeable external supervisor. Each example is a description of a situation together with a specification—the label—of the correct action the system should take to that situation, which is often to identify a category to which the situation belongs. The motive of this kind of learning is for the system to extrapolate, or generalize, its responses so that it acts correctly in situations not present in the training set.
Unsupervised Learning is typically about finding structure hidden in collections of unlabeled data. And there is no supervisor. It is mostly used when you don't know what you are looking for but just wanna know what's hidden in the data.
Reinforcement Learning is learning what to do when given a situation so that it can maximize the reward. Humans and even animal's way of learning closely resembles this kind. Whether we are learning to drive a car or to hold a conversation, we are acutely aware of how our environment responds to what we do, and we seek to influence what happens through our behavior.
There is also another kind of ML called Semi-supervised learning. Some Algorithms deal with data that is partially labeled.
Machine Learning consists of algorithms whose basic element resembles neurons in a brain. The subset of ML which deals with neural networks is called Deep Learning.

Comments
Post a Comment