- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What are different components of a machine learning algorithm?
To understand various components of a machine learning algorithm, we first understand the definition of machine learning given by Professor Mitchell −
“A computer program is said to learn from experience E with respect to some class of tasks T and performance measure P, if its performance at tasks in T, as measured by P, improves with experience E.”
As we can see the above definition, the main components of any machine learning algorithm are Task(T), Performance(P), and Experience(E).
Based on these three components, let’s simplify the definition of machine learning −
Machine learning is a subset of Artificial Intelligence (AI) and a field of computer science that consists of learning algorithms improving their performance (P), at executing some tasks say T, over the time with experience E.
Task (T) − A task (T) should be defined in a two-fold manner- One is from a problem’s perspective and other is from ML perspective. From a problem's perspective it can be defined as the real-world problem to be solved. For example, the problem can be anything like finding the best marketing strategy or predicting the house price. Whereas from ML perspective a task T is based on the workflow that the system should follow to operate on sample data points. For example, Classification, Regression, Anomaly detection, Clustering, Transcription, etc. are some of the tasks that could be classified as machine learning based tasks.
Experience (E) − Experience, in layman terms, is the knowledge someone gets by doing something or observing someone else doing it. Whereas, experience, in the case of machine learning-based tasks, is the knowledge gained from sample data points. Once an ML algorithm gets the data points, it runs iteratively and learns from the inherent pattern. Supervised, unsupervised, semi-supervised, and reinforcement learning are some ways of learning and gaining experience.
Performance (P) − How can you say our machine learning model, which is supposed to perform a task T and gaining experience E from sample data points over time, is performing well or not? This is where the third component called performance (P) comes into the picture. It is a quantitative metric used to measure how well a machine learning model is performing the task(T) with experience(E). Some of the performance metrics to measure the performance of our ML model are Accuracy score, F1 score, precision, Confusion matrix, recall, and sensitivity.
- Related Articles
- Are machine learning algorithm patentable?
- What are different models in machine learning?
- What are the different learning styles in machine learning algorithms?
- What are the various useful components of the Python ecosystem for Machine Learning?
- What are the different kinds of gradient descent algorithms in Machine Learning?
- What are the applications of Machine Learning?
- What are the Classifications of Machine Learning?
- What are business benefits of machine learning?
- What are the Features of Machine Learning?
- What are Some Great Examples of Machine Learning?
- What is a Machine Learning?
- What Are Interesting Topics in Machine Learning?
- What is Machine Learning?
- What are the different components and architectures of firewalls?
- What are layers in a Neural Network with respect to Deep Learning in Machine Learning?
