0% found this document useful (0 votes)
8 views18 pages

Overview of Machine Learning Concepts

Machine learning (ML) is a subfield of artificial intelligence focused on developing algorithms that learn from data to perform tasks without explicit instructions. It has applications in various fields such as natural language processing, computer vision, and medicine, with deep learning techniques enhancing its capabilities. The history of ML dates back to the 1950s, evolving from early cognitive studies to a distinct field emphasizing practical problem-solving using statistical methods.

Uploaded by

vineetha
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views18 pages

Overview of Machine Learning Concepts

Machine learning (ML) is a subfield of artificial intelligence focused on developing algorithms that learn from data to perform tasks without explicit instructions. It has applications in various fields such as natural language processing, computer vision, and medicine, with deep learning techniques enhancing its capabilities. The history of ML dates back to the 1950s, evolving from early cognitive studies to a distinct field emphasizing practical problem-solving using statistical methods.

Uploaded by

vineetha
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

Machine learning

 Article

 Talk
 Language
Download PDF
Watch
Edit
For the journal, see Machine Learning (journal).

"Statistical learning" redirects here. For statistical learning in linguistics,


see statistical learning in language acquisition.

Machine learning (ML) is a field of study in artificial intelligence concerned with the
development and study of statistical algorithms that can learn from data and generalize to unseen
data, and thus perform tasks without explicit instructions.[1] Within a subdiscipline in machine
learning, advances in the field of deep learning have allowed neural networks, a class of
statistical algorithms, to surpass many previous machine learning approaches in performance. [2]
ML finds application in many fields, including natural language processing, computer
vision, speech recognition, email filtering, agriculture, and medicine.[3][4] The application of ML to
business problems is known as predictive analytics.
Statistics and mathematical optimization (mathematical programming) methods comprise the
foundations of machine learning. Data mining is a related field of study, focusing on exploratory
data analysis (EDA) via unsupervised learning.[6][7]
From a theoretical viewpoint, probably approximately correct learning provides a framework for
describing machine learning.
History
edit
See also: Timeline of machine learning

The term machine learning was coined in 1959 by Arthur Samuel, an IBM employee and pioneer
in the field of computer gaming and artificial intelligence.[8][9] The synonym self-teaching
computers was also used in this time period.[10][11]
Although the earliest machine learning model was introduced in the 1950s when Arthur
Samuel invented a program that calculated the winning chance in checkers for each side, the
history of machine learning roots back to decades of human desire and effort to study human
cognitive processes.[12] In 1949, Canadian psychologist Donald Hebb published the book The
Organization of Behavior, in which he introduced a theoretical neural structure formed by certain
interactions among nerve cells.[13] Hebb's model of neurons interacting with one another set a
groundwork for how AIs and machine learning algorithms work under nodes, or artificial
neurons used by computers to communicate data.[12] Other researchers who have studied
human cognitive systems contributed to the modern machine learning technologies as well,
including logician Walter Pitts and Warren McCulloch, who proposed the early mathematical
models of neural networks to come up with algorithms that mirror human thought processes.[12]
By the early 1960s, an experimental "learning machine" with punched tape memory, called
Cybertron, had been developed by Raytheon Company to
analyse sonar signals, electrocardiograms, and speech patterns using rudimentary reinforcement
learning. It was repetitively "trained" by a human operator/teacher to recognize patterns and
equipped with a "goof" button to cause it to reevaluate incorrect decisions.[14] A representative
book on research into machine learning during the 1960s was Nilsson's book on Learning
Machines, dealing mostly with machine learning for pattern classification.[15] Interest related to
pattern recognition continued into the 1970s, as described by Duda and Hart in 1973.[16] In 1981 a
report was given on using teaching strategies so that an artificial neural network learns to
recognize 40 characters (26 letters, 10 digits, and 4 special symbols) from a computer terminal. [17]
Tom M. Mitchell provided a widely quoted, more formal definition of the algorithms studied in
the machine learning field: "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."[18] This definition of the tasks in which machine learning is
concerned offers a fundamentally operational definition rather than defining the field in cognitive
terms. This follows Alan Turing's proposal in his paper "Computing Machinery and
Intelligence", in which the question "Can machines think?" is replaced with the question "Can
machines do what we (as thinking entities) can do?".[19]
Modern-day machine learning has two objectives. One is to classify data based on models which
have been developed; the other purpose is to make predictions for future outcomes based on
these models. A hypothetical algorithm specific to classifying data may use computer vision of
moles coupled with supervised learning in order to train it to classify the cancerous moles. A
machine learning algorithm for stock trading may inform the trader of future potential
predictions.[20]
Relationships to other fields
edit
Artificial intelligence
edit
Machine learning as subfield of AI[21]

As a scientific endeavor, machine learning grew out of the quest for artificial intelligence (AI).
In the early days of AI as an academic discipline, some researchers were interested in having
machines learn from data. They attempted to approach the problem with various symbolic
methods, as well as what were then termed "neural networks"; these were
mostly perceptrons and other models that were later found to be reinventions of the generalized
linear models of statistics.[22] Probabilistic reasoning was also employed, especially in automated
medical diagnosis.[23]: 488
However, an increasing emphasis on the logical, knowledge-based approach caused a rift
between AI and machine learning. Probabilistic systems were plagued by theoretical and
practical problems of data acquisition and representation.[23]: 488 By 1980, expert systems had come
to dominate AI, and statistics was out of favor.[24] Work on symbolic/knowledge-based learning
did continue within AI, leading to inductive logic programming(ILP), but the more statistical line
of research was now outside the field of AI proper, in pattern recognition and information
retrieval.[23]: 708–710, 755 Neural networks research had been abandoned by AI and computer
science around the same time. This line, too, was continued outside the AI/CS field, as
"connectionism", by researchers from other disciplines including John Hopfield, David
Rumelhart, and Geoffrey Hinton. Their main success came in the mid-1980s with the reinvention
of backpropagation.[23]: 25
Machine learning (ML), reorganized and recognized as its own field, started to flourish in the
1990s. The field changed its goal from achieving artificial intelligence to tackling solvable
problems of a practical nature. It shifted focus away from the symbolic approaches it had
inherited from AI, and toward methods and models borrowed from statistics, fuzzy logic,
and probability theory.[24]
Data compression
edit
This section is an excerpt from Data compression § Machine learning.[edit]

There is a close connection between machine learning and compression. A system that predicts
the posterior probabilities of a sequence given its entire history can be used for optimal data
compression (by using arithmetic coding on the output distribution). Conversely, an optimal
compressor can be used for prediction (by finding the symbol that compresses best, given the
previous history). This equivalence has been used as a justification for using data compression as
a benchmark for "general intelligence".[25][26][27]
An alternative view can show compression algorithms implicitly map strings into implicit feature
space vectors, and compression-based similarity measures compute similarity within these
feature spaces. For each compressor C(.) we define an associated vector space ℵ, such that C(.)
maps an input string x, corresponding to the vector norm ||~x||. An exhaustive examination of the
feature spaces underlying all compression algorithms is precluded by space; instead, feature
vectors chooses to examine three representative lossless compression methods, LZW, LZ77, and
PPM.[28]
According to AIXI theory, a connection more directly explained in Hutter Prize, the best possible
compression of x is the smallest possible software that generates x. For example, in that model, a
zip file's compressed size includes both the zip file and the unzipping software, since you can not
unzip it without both, but there may be an even smaller combined form.
Examples of AI-powered audio/video compression software include NVIDIA Maxine, AIVC.
[29]
Examples of software that can perform AI-powered image compression
include OpenCV, TensorFlow, MATLAB's Image Processing Toolbox (IPT) and High-Fidelity
Generative Image Compression.[30]
In unsupervised machine learning, k-means clustering can be utilized to compress data by
grouping similar data points into clusters. This technique simplifies handling extensive datasets
that lack predefined labels and finds widespread use in fields such as image compression.[31]
Data compression aims to reduce the size of data files, enhancing storage efficiency and
speeding up data transmission. K-means clustering, an unsupervised machine learning algorithm,
is employed to partition a dataset into a specified number of clusters, k, each represented by
the centroid of its points. This process condenses extensive datasets into a more compact set of
representative points. Particularly beneficial in image and signal processing, k-means clustering
aids in data reduction by replacing groups of data points with their centroids, thereby preserving
the core information of the original data while significantly decreasing the required storage
space.[32]
Large language models (LLMs) are also efficient lossless data compressors on
some data sets, as demonstrated by DeepMind's research with the Chinchilla
70B model. Developed by DeepMind, Chinchilla 70B effectively compressed
data, outperforming conventional methods such as Portable Network
Graphics (PNG) for images and Free Lossless Audio Codec (FLAC) for audio. It
achieved compression of image and audio data to 43.4% and 16.4% of their
original sizes, respectively. There is, however, some reason to be concerned
that the data set used for testing overlaps the LLM training data set, making
it possible that the Chinchilla 70B model is only an efficient compression tool
on data it has already been trained on.[33][34]

Data mining
edit
Machine learning and data mining often employ the same methods and overlap significantly, but
while machine learning focuses on prediction, based on known properties learned from the
training data, data mining focuses on the discovery of (previously) unknown properties in the
data (this is the analysis step of knowledge discovery in databases). Data mining uses many
machine learning methods, but with different goals; on the other hand, machine learning also
employs data mining methods as "unsupervised learning" or as a preprocessing step to improve
learner accuracy. Much of the confusion between these two research communities (which do
often have separate conferences and separate journals, ECML PKDD being a major exception)
comes from the basic assumptions they work with: in machine learning, performance is usually
evaluated with respect to the ability to reproduce known knowledge, while in knowledge
discovery and data mining (KDD) the key task is the discovery of
previously unknown knowledge. Evaluated with respect to known knowledge, an uninformed
(unsupervised) method will easily be outperformed by other supervised methods, while in a
typical KDD task, supervised methods cannot be used due to the unavailability of training data.
Machine learning also has intimate ties to optimization: Many learning problems are formulated
as minimization of some loss function on a training set of examples. Loss functions express the
discrepancy between the predictions of the model being trained and the actual problem instances
(for example, in classification, one wants to assign a label to instances, and models are trained to
correctly predict the preassigned labels of a set of examples).[35]
Generalization
edit
Characterizing the generalization of various learning algorithms is an active topic of current
research, especially for deep learning algorithms.
Statistics
edit
Machine learning and statistics are closely related fields in terms of methods, but distinct in their
principal goal: statistics draws population inferences from a sample, while machine learning
finds generalizable predictive patterns.[36] According to Michael I. Jordan, the ideas of machine
learning, from methodological principles to theoretical tools, have had a long pre-history in
statistics.[37] He also suggested the term data science as a placeholder to call the overall field.[37]
Conventional statistical analyses require the a priori selection of a model most suitable for the
study data set. In addition, only significant or theoretically relevant variables based on previous
experience are included for analysis. In contrast, machine learning is not built on a pre-structured
model; rather, the data shape the model by detecting underlying patterns. The more variables
(input) used to train the model, the more accurate the ultimate model will be.[38]
Leo Breiman distinguished two statistical modeling paradigms: data model and algorithmic
model,[39] wherein "algorithmic model" means more or less the machine learning algorithms
like Random Forest.
Some statisticians have adopted methods from machine learning, leading to a combined field that
they call statistical learning.[40]
Statistical physics
edit
Analytical and computational techniques derived from deep-rooted physics of disordered
systems can be extended to large-scale problems, including machine learning, e.g., to analyse the
weight space of deep neural networks.[41] Statistical physics is thus finding applications in the area
of medical diagnostics.[42]
Theory
Approaches

1.
2.
3.
4.

Models
Applications



Limitations
Model assessments
Ethics
Hardware
Software



Journals

Conferences

See also


References
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.

Sources

Further reading

External links

Last edited 23 hours ago by OAbot

RELATED ARTICLES

 Neural network (machine learning)Computational model used in


machine learning, based on connected, hierarchical functions
 Unsupervised learningParadigm in machine learning that uses no
classification labels
 Glossary of artificial intelligenceList of definitions of terms and
concepts commonly used in the study of artificial intelligence

 Content is available under CC BY-SA 4.0 unless otherwise noted.

 Privacy policy

 Contact Wikipedia

 Code of Conduct

 Developers

 Statistics

 Cookie statement

 Terms of Use

 Desktop

Common questions

Powered by AI

Machine learning (ML) evolved from the early concept of self-teaching computers coined by Arthur Samuel in 1959 with a program for checkers strategies, to the interdisciplinary research involving the study of human cognitive processes. Neural network models were inspired by Hebb's 1949 model. In the 1960s, research focused on pattern classification using learning machines like Nilsson's book highlighted. The 1970s saw a surge in pattern recognition interest. By 1981, teaching strategies for neural networks emerged, and Tom M. Mitchell's 1997 definition unified the field around a task-performance-experience framework. Recent advancements emphasize deep learning, shifting from AI symbolic approaches to practical, statistical, and probabilistic methods for real-world problem-solving .

Statistics and mathematical optimization are foundational to developing machine learning algorithms. Statistics contributes methods to infer population patterns from sample data, aiding in generalizing predictive models. Mathematical optimization guides the design of algorithms that seek to minimize loss functions, which quantify the difference between a model's predictions and the actual problem instances. This involves fine-tuning model parameters to achieve the best performance on training data, creating models that can generalize effectively to new, unseen data .

Historically, neural networks laid the foundation for machine learning, inspired by the 1949 neural structure model by Donald Hebb. Early models, such as perceptrons and simple neural networks, were originally part of AI research until a shift in emphasis towards logical, knowledge-based approaches isolated them. This line continued under 'connectionism' by other researchers. In the mid-1980s, the reinvention of backpropagation reignited interest in neural networks, contributing significantly to modern ML through deep learning, a subfield that now surpasses many previous ML approaches. Today, neural networks are pivotal in solving complex pattern recognition and classification problems .

Machine learning (ML) and data mining are closely related as they often use similar methods, but they have distinct objectives. ML focuses on prediction by learning from training data to generalize patterns to unseen data. Data mining, however, emphasizes discovering unknown patterns within existing data, which is part of knowledge discovery in databases. While ML seeks to improve predictive performance, data mining aims to unveil hidden knowledge from data, often utilizing ML as a tool in this analysis .

Early machine learning researchers faced challenges in creating models that could replicate human cognitive processes, such as the need to understand complex neural interactions and abstract thought models. Donald Hebb's neural theory in 1949 set a groundwork, but implementing cognitive-like processes in computers straightforwardly was challenging due to limited technology. Mathematical models from researchers like Walter Pitts and Warren McCulloch were used initially to mimic human thought processes. Over time, as computing power and algorithms evolved, approaches like reinforcement learning and neural networks began to better capture complex cognitive behaviors, reflecting more accurately the intricate processes of human cognition .

Machine learning (ML) finds applications across several fields, including natural language processing, computer vision, speech recognition, email filtering, agriculture, and medicine. In natural language processing, ML is used to understand and generate human language. Computer vision applies ML for image and video analysis. In speech recognition, ML algorithms convert speech into text. In email filtering, ML models classify emails to filter out spam. In agriculture, ML optimizes crop management and pest control. In medicine, it supports diagnostic procedures and personalized treatment plans. Each application uses ML to solve field-specific problems, often focusing on predictions or classifications based on historical data .

Unsupervised learning techniques like k-means clustering contribute to data compression by partitioning a dataset into a set number of clusters, with each cluster represented by a centroid. This process condenses extensive datasets into a smaller set of representative points, reducing data size while preserving essential information. Particularly effective in image and signal processing, k-means clustering minimizes storage requirements and speeds up data transmission by compressing data into more manageable forms without predefined labels, facilitating efficient data handling .

Tom M. Mitchell contributed a widely recognized operational definition to machine learning, stating that a program learns from experience E concerning some tasks T and performance measure P if its performance on T, as measured by P, improves with experience E. This definition, emphasizing task-oriented learning and measurable performance improvements, moves away from philosophical considerations of AI and facilitates practical understanding and implementation of machine learning. It highlights the iterative nature of ML, focusing on experience and performance as key components .

Since the 1990s, machine learning objectives have shifted from attempting to achieve generalized artificial intelligence using symbolic approaches to solving practical problems with statistical, probabilistic, and fuzzy logic methods. This shift was driven by the need to address solvable real-world problems more effectively and the increase in computational power, allowing for the practical application of complex models. This reorientation enabled ML to impact diverse fields like natural language processing and computer vision significantly, as researchers focused on model performance improvement rather than the philosophical implications of AI .

Machine learning intersects with data compression as both involve pattern recognition and data efficiency. ML models use pattern prediction to compress data optimally, such as arithmetic coding. Conversely, data compression's optimal nature can inform ML prediction tasks. This relationship highlights ML's role in efficient data handling, contributing to storage management and transmission speed improvements. The intersection underlines ML's potential in various fields, enhancing general intelligence benchmarks and offering efficient audio/video compression solutions .

You might also like