Machine learning—algorithms that improve through data without explicit programming—emerged from mid-20th-century computation theory and became the revolutionary technology enabling artificial intelligence. From Turing's 1950 test through deep neural networks and transformers (2017+), it represents the Age of Revolutions' ultimate artifact: a tool that designs tools, closing the spiral of human technological acceleration.
Alan Mathison Turing (1912–1954), British logician and cryptanalyst. Turing conceived the theoretical foundation for machine learning in his 1950 paper "Computing Machinery and Intelligence," proposing the Turing Test as a measure of machine thought. His work on computable numbers (1936) and the abstract "Turing machine" established that any sufficiently complex algorithm could be mechanically executed. Though he died by suicide at 41, his intellectual legacy became the bedrock of artificial intelligence and, by extension, the modern learning algorithms that now govern global commerce, communication, and knowledge.
Specifications
Scalability
Exponential with data volume and parameter count
Core Mechanism
Iterative weight adjustment via gradient descent on error function
Theoretical Birth
1950 (Turing's "Computing Machinery and Intelligence")
Key Algorithmic Family
Neural networks, decision trees, support vector machines, transformers
Modern Peak Complexity
Transformer models with 100B–1T+ parameters (2020–2024)
Computational Substrate
Digital computers; GPUs and TPUs (post-2010)
Primary Data Requirement
Large labeled datasets (thousands to billions of examples)
First Practical Implementation
1956 (Dartmouth Summer Research Project on AI)
Engineering
Machine learning inverts the classical programming paradigm: instead of a human writing explicit rules, the algorithm discovers rules from examples. The process begins with a loss function—a mathematical measure of prediction error. The learner adjusts internal parameters (weights) using calculus-based optimization, typically stochastic gradient descent, to minimize this loss across training data. Neural networks, inspired loosely by biological neurons, stack layers of mathematical transformations; each layer learns increasingly abstract features. The 2012 breakthrough in deep learning (Krizhevsky, Sutskever, Hinton's AlexNet) demonstrated that convolutional neural networks could dramatically outperform hand-engineered features on image recognition. The transformer architecture (Vaswani et al., 2017) replaced recurrence with attention mechanisms—allowing parallel processing of sequences and enabling models like GPT (Radford et al., 2018–2024) to learn language patterns from billions of tokens. Crucially, scaling laws (Kaplan et al., 2020) revealed that model performance improves predictably with data, parameters, and compute—a finding that has driven exponential investment and capability growth.
Numerical values adjusted during training; encode learned patterns
Historical Overview
The intellectual roots of machine learning reach back to the 1930s–1940s: Turing's work on computability, McCulloch and Pitts's 1943 artificial neuron model, and Wiener's cybernetics (1948) all posed the question of whether machines could learn. Turing's 1950 paper crystallized this into a practical challenge: can a machine exhibit intelligent behavior indistinguishable from a human? The Dartmouth Summer Research Project (1956)—organized by McCarthy, Minsky, Shannon, and others—formally launched artificial intelligence as a discipline, though early optimism ("machines will be generally intelligent within a generation") proved premature. The 1960s–1970s saw limited progress; the "AI winter" (1974–1980) reflected the computational and data constraints of the era. Perceptrons (Rosenblatt, 1958) could learn linearly separable patterns but failed on non-linear problems (Minsky and Papert, 1969). The 1980s brought expert systems and symbolic AI, which relied on hand-coded knowledge rather than learning. The true revolution began in the 1990s–2000s: support vector machines (Vapnik et al.), ensemble methods (Breiman's random forests), and the resurgence of neural networks. The 2012 ImageNet moment—when Krizhevsky's deep convolutional network (AlexNet) achieved 85% accuracy versus 74% for the previous best—vindicated deep learning and triggered the modern era. Since 2017, transformer-based models (BERT, GPT-2, GPT-3, GPT-4) have demonstrated emergent reasoning, few-shot learning, and language understanding at scales previously thought impossible. By 2024, machine learning has become the dominant paradigm in AI, embedded in recommendation systems, autonomous vehicles, drug discovery, and large language models.
Why It Existed
Machine learning emerged from a collision of three historical forces. First, the theoretical question: Turing and others asked whether computation itself could be a model of thought, and whether machines could improve their own performance. Second, practical necessity: by the 1950s–1960s, many real-world problems (pattern recognition, game-playing, control systems) resisted explicit rule-based programming; learning from examples offered a path forward. Third, exponential growth in data and compute: the digital revolution created vast datasets (images, text, sensor streams) and the computational horsepower to process them. The internet (1990s onward) made data collection and distribution trivial; Moore's Law provided the processing speed; and open-source frameworks (TensorFlow, PyTorch, 2015+) democratized implementation. Machine learning thus answered a fundamental human desire: to automate not just execution but discovery itself—to build machines that could find patterns humans could not articulate. In the context of the Age of Revolutions, it represents the ultimate closure of the technological spiral: a tool that learns to make tools, embodying the Enlightenment dream of reason mechanized and perfected.
Daily Use
By 2024, machine learning is invisible infrastructure in daily life. Recommendation algorithms (Netflix, Spotify, YouTube) use collaborative filtering and neural networks to predict user preferences from billions of interactions. Email spam filters employ Naive Bayes and neural classifiers. Voice assistants (Siri, Alexa, Google Assistant) rely on speech recognition (acoustic models) and natural language understanding (transformers). Autonomous vehicles use convolutional neural networks for object detection, recurrent networks for trajectory prediction, and reinforcement learning for decision-making. Medical imaging—CT, MRI, X-ray analysis—increasingly uses deep learning for diagnosis, often matching or exceeding radiologist accuracy. Financial institutions use machine learning for fraud detection, algorithmic trading, and credit scoring. Search engines (Google) rank results using learning-to-rank algorithms. Social media platforms use machine learning for content moderation, deepfake detection, and feed ranking. Smartphone cameras use computational photography powered by neural networks. Large language models (ChatGPT, Claude, Gemini) have entered mainstream use for writing, coding, tutoring, and creative work. In research, machine learning has accelerated drug discovery (AlphaFold's protein structure prediction, 2020), materials science, and climate modeling. The typical user interacts with dozens of machine learning systems daily without awareness, a testament to how thoroughly the technology has been embedded in the digital ecosystem.
Crew / Personnel
Machine learning is a collective achievement spanning mathematicians, computer scientists, engineers, and domain experts. Key theoretical pioneers: Alan Turing (computability, 1936–1950); John von Neumann (stored-program computer, 1945); Warren McCulloch and Walter Pitts (artificial neuron, 1943); Norbert Wiener (cybernetics, 1948); Arthur Samuel (checkers-playing program, 1959); Frank Rosenblatt (perceptron, 1958); Marvin Minsky and Seymour Papert (perceptrons critique, 1969). The Dartmouth Summer Research Project (1956) convened John McCarthy, Marvin Minsky, Claude Shannon, and Nathaniel Rochester. Modern era pioneers: Geoffrey Hinton, Yann LeCun, and Yoshua Bengio (deep learning, 1980s–2010s; jointly awarded 2018 Turing Award); Yann LeCun (convolutional neural networks); Sepp Hochreiter and Jürgen Schmidhuber (LSTM, 1997); Yoshua Bengio (RNNs, attention); Ilya Sutskever, Alec Radford, and others (transformers, GPT); Demis Hassabis and John Jumper (AlphaFold). Institutional anchors: University of Toronto (Hinton's group), NYU (LeCun), University of Montreal (Bengio), DeepMind (Hassabis), OpenAI (Sutskevsky, Radford), Google Brain, Facebook AI Research. The field has grown to include millions of practitioners worldwide; no single person or institution can claim ownership.
Construction
Machine learning systems are constructed through an iterative pipeline: (1) Problem definition and data collection—identifying the task (classification, regression, generation) and gathering labeled examples; (2) Data preprocessing—cleaning, normalization, augmentation, and splitting into training/validation/test sets; (3) Model selection—choosing an architecture (linear model, tree, neural network, transformer) appropriate to the problem scale and domain; (4) Training—feeding data through the model repeatedly, computing loss, and updating weights via backpropagation and an optimizer; (5) Validation—monitoring performance on held-out data to detect overfitting; (6) Hyperparameter tuning—adjusting learning rate, batch size, regularization, network depth, etc., via grid search or Bayesian optimization; (7) Testing—final evaluation on a held-out test set to estimate real-world performance; (8) Deployment—integrating the trained model into production systems with monitoring for performance drift; (9) Retraining—periodically updating the model as new data arrives. Modern large-scale systems (GPT-4, AlphaFold) involve massive data pipelines (terabytes of text or protein sequences), distributed training across thousands of GPUs/TPUs, and months of compute. The cost of training state-of-the-art models has grown exponentially: GPT-3 (2020) cost an estimated $4.6 million; larger models may exceed $10–100 million. Construction thus requires not just intellectual insight but industrial-scale infrastructure and capital.
Variations
Machine learning encompasses diverse algorithmic families, each suited to different problems: Supervised learning (regression, classification) learns from labeled data; unsupervised learning (clustering, dimensionality reduction) finds structure in unlabeled data; semi-supervised learning leverages both. Specific architectures include linear models (logistic regression), tree-based methods (decision trees, random forests, gradient boosting), support vector machines, Bayesian networks, and neural networks. Within neural networks: feedforward networks for tabular and image data; convolutional neural networks (CNNs) for images; recurrent neural networks (RNNs, LSTMs, GRUs) for sequences; transformers (attention-based) for sequences and multimodal data; graph neural networks for relational data; variational autoencoders (VAEs) and generative adversarial networks (GANs) for generative tasks; reinforcement learning agents for decision-making under uncertainty. Ensemble methods combine multiple learners. Transfer learning reuses weights from large pre-trained models. Few-shot and zero-shot learning enable generalization from minimal examples. Federated learning trains on distributed data without centralization. Continual learning updates models as new data arrives. Interpretable machine learning (LIME, SHAP, attention visualization) aims to explain predictions. Each variation trades off accuracy, interpretability, computational cost, and data requirements.
Timeline
Date
Event
1936
Turing's Computable NumbersTheoretical foundation for computation
1943
McCulloch-Pitts NeuronFirst mathematical model of artificial neuron
1950
Turing Test ProposedTuring's measure of machine intelligence
1956
Dartmouth Summer Research ProjectBirth of artificial intelligence as a discipline
1958
Rosenblatt's PerceptronFirst learning algorithm for neural networks
1969
Perceptrons CritiqueExposes limitations of shallow networks
1980
Expert Systems PeakSymbolic AI dominates; learning approaches dormant
1997
LSTM Networks IntroducedSepp Hochreiter and Jürgen Schmidhuber solve vanishing gradient problem
ChatGPT Public ReleaseMachine learning enters mainstream consciousness
Famous Examples
AlexNet (Krizhevsky, Sutskever, Hinton, 2012): 8-layer CNN that won ImageNet 2012 with 85% top-5 accuracy, trained on two NVIDIA GTX 580 GPUs. Demonstrated that deep learning could dramatically outperform hand-engineered features. ImageNet itself (Fei-Fei Li et al., 2009): dataset of 14 million labeled images across 21,000 categories; enabled supervised learning at scale and became the benchmark for computer vision. BERT (Devlin et al., Google, 2018): 340-million-parameter transformer pre-trained on 3.3 billion words of English text using masked language modeling. Achieved state-of-the-art on 11 NLP benchmarks and enabled transfer learning for language understanding. GPT-2 (Radford et al., OpenAI, 2019): 1.5-billion-parameter language model trained on 40 GB of text. Demonstrated that scaling alone could produce coherent text generation and few-shot learning without task-specific training. GPT-3 (Brown et al., OpenAI, 2020): 175 billion parameters, trained on 300 billion tokens. Showed emergent reasoning, code generation, and translation with in-context learning. AlphaFold (DeepMind, 2020): deep learning system that predicts 3D protein structure from amino acid sequence. Solved a 50-year-old grand challenge in biology; structure predictions for 200 million proteins released publicly. GPT-4 (OpenAI, 2023): multimodal transformer accepting text and images; demonstrates improved reasoning, reduced hallucination, and performance near or exceeding human experts on standardized tests. Transformer-based models have become the dominant paradigm, scaling from millions to trillions of parameters.
Archaeological Finds
No physical artifacts exist for machine learning in the traditional archaeological sense; it is a mathematical and computational phenomenon. However, key historical artifacts include: (1) The original ENIAC (Electronic Numerical Integrator and Computer, 1946) at the Smithsonian Institution—the first general-purpose electronic computer, which made digital computation practical and enabled later machine learning research. (2) Turing's papers and correspondence, held at King's College Cambridge and the Turing Archive; his 1950 paper "Computing Machinery and Intelligence" is the intellectual seed of the field. (3) The Dartmouth Summer Research Project records (1956), archived at Dartmouth College; minutes, proposals, and correspondence documenting the founding moment of AI. (4) Geoffrey Hinton's early neural network papers and experimental notebooks (1980s–1990s), documenting the resurgence of deep learning during the AI winter. (5) The ImageNet dataset and competition records (2010–2017), preserved at Princeton University; the 2012 competition results and AlexNet code represent the inflection point of modern machine learning. (6) Source code repositories: the original AlexNet implementation (Caffe framework), LSTM papers, TensorFlow and PyTorch open-source repositories (GitHub), which preserve the technical evolution. (7) Training logs and model weights from GPT-2, BERT, and other landmark models, released publicly by OpenAI, Google, and Meta, allowing researchers to study and reproduce results. The "archaeology" of machine learning is thus digital and distributed—preserved in papers, code, datasets, and institutional archives rather than physical objects.
Comparison Panel
Machine Learning Vs. Statistics
Statistics: formal inference about populations from samples; emphasizes interpretability and uncertainty quantification. Machine learning: optimization-focused; prioritizes prediction accuracy; often treats data as infinite. Overlap is substantial; modern ML incorporates Bayesian methods and uncertainty estimation.
Machine Learning Vs. Symbolic AI
Symbolic AI (1960s–1980s): encodes human knowledge as logical rules and facts; brittle and requires extensive hand-curation. Machine learning: learns patterns from data; scales with data volume but requires large labeled datasets.
Deep Learning Vs. Shallow Methods
Shallow methods (linear models, SVMs, random forests): interpretable, fast to train, effective on small-to-medium datasets. Deep learning: requires large data and compute but learns hierarchical abstractions and achieves superior performance on complex tasks.
Transformer Vs. Recurrent Networks
RNNs (LSTM, GRU): sequential processing; memory of past; slower training due to sequential dependency. Transformers: parallel processing via attention; faster training; better at capturing long-range dependencies; now dominant in NLP.
Supervised Vs. Unsupervised Learning
Supervised: learns from labeled examples (input-output pairs); requires expensive annotation but enables precise task learning. Unsupervised: finds structure in unlabeled data; scales easily but output is less directly useful.
Machine Learning Vs. Classical Programming
Classical programming: human writes explicit rules; machine executes them deterministically. Machine learning: human provides data and objective; machine discovers rules through optimization. Classical is interpretable and predictable; ML is powerful on complex patterns but opaque.
Interesting Facts
Turing's 1950 paper predicted that by 2000, machines would pass the Turing Test; no machine has definitively done so, though GPT-4 and other LLMs come close in constrained settings.
The perceptron was so hyped in 1958 that the U.S. Navy held a press conference claiming it would eventually be able to walk, talk, see, write, reproduce itself, and be conscious.
The first AI winter (1974–1980) was triggered partly by the exponential growth in computational requirements for symbolic AI systems—a problem that machine learning later solved by learning rather than hand-coding.
Geoffrey Hinton, a pioneer of deep learning, was awarded the 2018 Turing Award (computing's highest honor) alongside Yann LeCun and Yoshua Bengio for breakthroughs in deep neural networks.
AlexNet used ReLU (Rectified Linear Unit) activation functions instead of the traditional sigmoid; this simple change dramatically sped up training and became standard in deep learning.
ImageNet, the dataset that launched the deep learning revolution, was created by Fei-Fei Li and colleagues as a response to the lack of large-scale labeled image datasets; it contains 14 million images.
GPT-3 (2020) was trained on 300 billion tokens of text using 3,072 NVIDIA V100 GPUs for 355 GPU-years; the estimated cost was $4.6 million.
The transformer architecture's key innovation—self-attention—allows the model to weight the importance of each input token relative to every other token, enabling parallel processing and long-range reasoning.
BERT (Bidirectional Encoder Representations from Transformers) uses masked language modeling: it randomly masks 15% of input tokens and learns to predict them from context, enabling powerful unsupervised pre-training.
ChatGPT reached 100 million users in 2 months, making it the fastest-growing consumer application in history (faster than Instagram, TikTok, or Pokémon Go).
AlphaFold's protein structure predictions are accurate to within 1.6 angstroms (0.00000000016 meters) on average—approaching experimental resolution—solving a problem that had resisted solution for 50 years.
Large language models exhibit "scaling laws": performance improves predictably as model size, data volume, and compute increase, following a power-law relationship (Kaplan et al., 2020).
Machine learning models can exhibit emergent behaviors not explicitly trained for: GPT-3 can perform arithmetic, translate languages, and write code despite being trained only on next-token prediction.
Adversarial examples—inputs slightly perturbed in ways imperceptible to humans—can fool deep learning models; a stop sign with graffiti might be misclassified as a speed limit sign.
Transfer learning—reusing weights from large pre-trained models—has become standard practice, reducing training time and data requirements for downstream tasks by orders of magnitude.
Reinforcement learning agents (AlphaGo, AlphaZero) have beaten world champions in Go and chess by learning through self-play, discovering strategies humans had never considered.
The field of machine learning has grown from ~100 researchers in 1956 to millions of practitioners globally; the number of ML papers published annually has grown exponentially, exceeding 100,000 by 2023.
Quotations
Text
Computing machinery and intelligence. I propose to consider the question, 'Can machines think?'
Attribution
Alan Turing, "Computing Machinery and Intelligence," Mind, 1950
Text
The question 'Can machines think?' is itself too meaningless to deserve discussion.
Attribution
Alan Turing, "Computing Machinery and Intelligence," 1950
Text
If a machine is expected to be infallible, it cannot also be intelligent.
Attribution
Alan Turing, 1950
Text
We propose that a 2-month, 10-man study be undertaken by MIT, CMU, IBM, and Bell Labs... An attempt will be made to find how to make machines use language, form abstractions and concepts, solve kinds of problems now reserved for humans, and improve themselves.
Attribution
John McCarthy et al., proposal for the Dartmouth Summer Research Project on Artificial Intelligence, 1956
Text
The perceptron is the embryo of an electronic computer that [the Navy] expects will be able to walk, talk, see, write, reproduce itself and be conscious of its existence.
Attribution
New York Times, July 8, 1958, reporting on the Navy's demonstration of Rosenblatt's Perceptron
Text
The limitations of the perceptron are not due to the basic unreliability of its components, but to fundamental limitations in its structure.
Attribution
Marvin Minsky and Seymour Papert, Perceptrons, 1969
Text
Deep learning is the only methodology known today to successfully train very large artificial neural networks.
Attribution
Geoffrey Hinton, Yann LeCun, and Yoshua Bengio, 2015
Text
The unreasonable effectiveness of deep learning in artificial intelligence.
Attribution
Paraphrasing Wigner; attributed to various deep learning researchers, 2010s
Text
Attention is all you need.
Attribution
Vaswani et al., title of the Transformer paper, 2017
Text
Language models are unsupervised multitask learners.
Attribution
Alec Radford et al., GPT-2 paper, OpenAI, 2019
Text
We found that scaling up language models greatly improves task-agnostic, few-shot performance, sometimes even reaching competitiveness with prior state-of-the-art fine-tuned models.
Attribution
Tom Brown et al., "Language Models are Few-Shot Learners," GPT-3 paper, 2020
Text
Machine learning is the new programming.
Attribution
Andrew Ng, Coursera and Stanford, 2010s
Text
The future of machine learning is not in bigger models, but in better data and better algorithms.
Attribution
Fei-Fei Li, Stanford Human-Centered AI Institute, paraphrased
Text
I think we should be very careful about artificial intelligence. If I had to guess at what our biggest existential threat is, it's probably that.
Attribution
Elon Musk, 2014 (reflecting broader concerns about AI safety as ML capabilities grew)
Sources
Date
1950
Note
Foundational paper proposing the Turing Test and arguing that digital computers could, in principle, exhibit intelligent behavior.
Type
primary
Title
Computing Machinery and Intelligence
Author
Alan Turing
Publication
Mind, Vol. 59, No. 236
Date
1943
Note
First mathematical model of an artificial neuron; foundation for neural network theory.
Type
primary
Title
A Logical Calculus of Ideas Immanent in Nervous Activity
Author
Warren McCulloch and Walter Pitts
Publication
Bulletin of Mathematical Biophysics, Vol. 5, No. 4
Date
1958
Note
Introduces the Perceptron learning algorithm and proves convergence theorem.
Type
primary
Title
The Perceptron: A Probabilistic Model for Information Storage and Organization in the Brain
Author
Frank Rosenblatt
Publication
Psychological Review, Vol. 65, No. 6
Date
1969
Note
Rigorous critique of perceptrons' limitations; triggered the first AI winter.
Type
primary
Title
Perceptrons: An Introduction to Computational Geometry
Author
Marvin Minsky and Seymour Papert
Publication
MIT Press
Date
1997
Note
Introduces LSTM cells; solves vanishing gradient problem in recurrent networks.
Type
primary
Title
Long Short-Term Memory
Author
Sepp Hochreiter and Jürgen Schmidhuber
Publication
Neural Computation, Vol. 9, No. 8
Date
2012
Note
AlexNet paper; demonstrates deep learning's superiority on ImageNet; triggers modern AI boom.
Type
primary
Title
ImageNet Classification with Deep Convolutional Neural Networks
Author
Alex Krizhevsky, Ilya Sutskever, and Geoffrey E. Hinton
Publication
Advances in Neural Information Processing Systems (NIPS)
Date
2017
Note
Introduces the Transformer architecture; foundation for modern large language models.
Type
primary
Title
Attention Is All You Need
Author
Ashish Vaswani, Noam Shazeer, Parmar, et al.
Publication
Advances in Neural Information Processing Systems (NIPS)
Date
2020
Note
GPT-3 paper; demonstrates emergent few-shot learning in 175-billion-parameter model.
Type
primary
Title
Language Models are Few-Shot Learners
Author
Tom B. Brown, Benjamin Mann, Nick Ryder, et al.
Publication
Advances in Neural Information Processing Systems (NeurIPS)
Date
2021
Note
AlphaFold paper; demonstrates deep learning's ability to solve 50-year-old protein folding problem.
Type
primary
Title
Highly Accurate Protein Structure Prediction with AlphaFold
Author
John Jumper, Richard Evans, Alexander Pritzel, et al.
Publication
Nature, Vol. 596
Date
2020
Note
Comprehensive textbook covering machine learning, AI history, and foundational concepts.
Type
secondary
Title
Artificial Intelligence: A Modern Approach
Author
Stuart Russell and Peter Norvig
Publication
Prentice Hall (4th edition)
Date
2016
Note
Authoritative textbook on deep learning theory and practice; covers neural networks, optimization, and applications.
Type
secondary
Title
Deep Learning
Author
Ian Goodfellow, Yoshua Bengio, and Aaron Courville
Publication
MIT Press
Date
2015
Note
Comprehensive historical survey of deep learning from 1960s to 2015; authored by a pioneer.
Type
secondary
Title
Deep Learning in Neural Networks: An Overview
Author
Jürgen Schmidhuber
Publication
Neural Networks, Vol. 61
Date
2019
Note
Accessible overview of AI and machine learning history, capabilities, and limitations.
Type
secondary
Title
Artificial Intelligence: A Guide for Thinking Humans
Author
Melanie Mitchell
Publication
Farrar, Straus and Giroux
Date
2018
Note
Practical guide to machine learning development and strategy; emphasizes data-centric approaches.
Type
secondary
Title
Machine Learning Yearning
Author
Andrew Ng
Publication
Deeplearning.AI (online)
Date
2015–present
Note
Influential Stanford course; freely available lectures and notes on deep learning for computer vision.
Type
secondary
Title
CS231n: Convolutional Neural Networks for Visual Recognition
Author
Fei-Fei Li, Andrej Karpathy, and Justin Johnson
Publication
Stanford University (course notes and lectures)
Date
2015
Note
Seminal review article by three Turing Award winners; overview of deep learning principles and applications.
Type
secondary
Title
Deep Learning
Author
Yann LeCun, Yoshua Bengio, and Geoffrey Hinton
Publication
Nature, Vol. 521, No. 7553
Date
2018
Note
Critical examination of machine learning's role in social media recommendation algorithms and data extraction.
Type
secondary
Title
Ten Arguments for Deleting Your Social Media Accounts Right Now
Author
Jaron Lanier
Publication
Henry Holt
Date
2016
Note
Critique of machine learning applications in criminal justice, hiring, and lending; examines bias and opacity.
Type
secondary
Title
Weapons of Math Destruction: How Big Data Increases Inequality and Threatens Democracy
Author
Cathy O'Neil
Publication
Crown
Date
2021
Note
Examines the material, labor, and environmental costs of machine learning infrastructure and data collection.
Type
secondary
Title
Atlas of AI: Power, Politics, and the Planetary Costs of Artificial Intelligence
Author
Kate Crawford
Publication
Yale University Press
Date
2018
Note
Philosophical and technical exploration of causality in machine learning; argues for causal reasoning beyond correlation.
Type
secondary
Title
The Book of Why: The New Science of Cause and Effect