An Overview of Machine Learning Model Training
ML training: Initialize model with random weights, forward pass makes predictions, calculate loss measuring error, backpropagation updates...
A complete A–Z index of every Terms Explained article on When Notes Fly, part of our Explainers coverage. New to the topic? Start with the foundational explainers, then move on to case studies and applied frameworks. Returning for something specific? Use the list below to jump straight to it.
For the latest pieces newest-first, see the Terms Explained section. For related ideas across the section, see the Explainers archive. How we research and review articles: editorial standards.
ML training: Initialize model with random weights, forward pass makes predictions, calculate loss measuring error, backpropagation updates...
APIs define software communication contracts. REST APIs use endpoints like /users and HTTP methods like GET for read and POST for create operations.
Database indexes use B-tree structures maintaining sorted pointers to rows. Like book indexes, they enable fast lookups without scanning entire...
Encryption transforms plaintext into ciphertext using algorithms and keys. Intercepted data is useless without the key.
Load balancers distribute incoming requests across servers using algorithms like round robin for fairness and least connections for optimal routing.
Git stores snapshots as commits with complete file trees and metadata. Objects include blobs for content, trees for directories, commits for history.
Search engines crawl pages by following links, index content by extracting text and metadata, then rank results using algorithms and relevance...
DNS resolution: Browser checks cache, queries recursive resolver like Google DNS, resolver checks cache, then queries root nameservers to find IP...
Containers use Linux namespaces for isolated processes and cgroups for resource limits. Lightweight virtualization with separate filesystems and...
Transactions treat operations as single units—all succeed or all fail. ACID properties: Atomicity (all-or-nothing), Consistency, Isolation,...