Don Stephenson Don Stephenson

LightStruc AI · Reference Schedules

Terms, definitions, vendors, algorithms, and milestones — the working notebook behind the blueprint.

Terms & Definitions
TermClassDefinition
Base error levelProceduralFundamental failure rate of a model before specific optimizations, such as prompt engineering or fine-tuning, are applied.
Contextual embeddingsMethodologyCan be used to extract latent properties.
Classifier-Free Guidance (CFG)MethodologyMethod to fine-tune model outputs by combining guided and unguided prediction pathways.
Curse of dimensionality / PolysemanticityBehaviorA single neuron activates in response to multiple, often unrelated concepts.
Knowledge DistillationMethodologyStudent model is trained to mimic the performance and decision-making logic of a larger, more powerful teacher model.
Explanatory variableStatisticsAlso called independent variables, predictors, or features — the input used by an algorithm to predict a specific outcome (the response or dependent variable).
ErgodicityPropertyThe idea that a point of a moving system — dynamical or stochastic — will eventually visit all parts of the space in which the system moves.
Grouped-Query Attention (GQA)MechanismShares keys/values across multiple query heads — used by Llama 3.
GrokkingPropertyA model suddenly learns to generalize (perform correctly on unseen data) long after it has achieved perfect accuracy on its training data.
LatentPropertyExisting but not yet developed or manifest; hidden or concealed.
LogitStatisticsTransforming probabilities (0 to 1) onto the entire number line.
PruningMethodologySetting weights to zero.
RLHFMethodologyReinforcement Learning from Human Feedback.
Ground TruthTrainingThe correct answer when training with labels.
Viterbi AlgorithmAlgorithmFinds the most likely sequence of hidden states. Mainly used for training validation, edge computing, and bioinformatics.
Levenberg–Marquardt (LMA)AlgorithmNon-linear least-squares curve fitting — stable with any input.
JailbreakBehaviorBypassing a model's built-in safety restrictions.
IsotropicPropertyUniform layer sizes.
OpenCLStandardOpen Computing Language — royalty-free standard for cross-platform, parallel programming of arithmetic accelerators (CPUs, GPUs, DSPs, FPGAs).
Long-tailStatisticsThe portion of a distribution having many occurrences far from the "head" or central part.
Few-shotMethodologyModels learn new tasks from very few examples (typically 1–5), enabling rapid adaptation without extensive retraining — valuable for data-scarce fields like medical diagnosis.
Long-tail few-shot classificationMethodologyRecognizes rare classes (the "tail") with few examples, using contrastive learning, meta-learning, and prototype/memory mechanisms to boost rare-class performance without forgetting common classes.
Abbreviation Index
Abbrev.ExpansionAbbrev.Expansion
AEAuto EncoderMDPMarkov Decision Process
AMIAdvanced Machine IntelligenceMASMulti-Agent System
DAGDirected Acyclic GraphMHAMulti-Head Attention
DPDynamic ProgrammingMLOpsMachine Learning Operations
DiTDiffusion TransformerMoMMethod of Moments
dLLMDiffusion LLMNLPNatural Language Processing
DPODirect Preference OptimizationNLDRNonlinear Dimensionality Reduction
EMExpectation–MaximizationRLReinforcement Learning
GANGenerative Adversarial NetworkTDTemporal Difference
GPTGenerative Pre-trained TransformerSGDStochastic Gradient Descent
GPTQGeneralized Post-Training QuantizationSFTSupervised Fine-Tuning
GRUGated Recurrent UnitSRASymbolic Resonance Array (neuromorphic crystals)
LLMLarge Language ModelLLELocally Linear Embedding
Cloud-Hosted LLMs / Chat
ProductVendorFocus
ChatGPTOpenAICloud-hosted LLM
ClaudeAnthropicCloud-hosted LLM
GeminiGoogle DeepMindCloud-hosted LLM
DeepSeekHigh-FlyerCloud-hosted LLM
GrokxAICloud-hosted LLM
Meta AIMetaCloud-hosted LLM
Platforms / Frameworks / Tools / Libraries
NameOwner / OriginFocus
Hugging FaceFounders / employees / investorsMachine learning models
ClickUpPrivate / foundersWorkplace productivity
CoralGooglePlatform
DescopePrivateExternal IAM platform
ElasticsearchElastic N.V.Identity / search
FlowiseWorkdayAgentic workflow generator
HumanloopMerged with AnthropicLLM evaluation & development platform
LatentMASPrinceton-AI Gen-VerseLLM agents communicate directly within their latent space rather than through natural-language tokens
LibtorchPyTorch FoundationC++ API to PyTorch
LlamaMetaOpen model family
MS Agent FrameworkMicrosoftOrchestration of multiple AI agents
Moonshot AIAlibaba, Tencent, IDG Capital, HongShanMixture-of-Experts (MoE) LLM models
Kimi K2Moonshot AIMixture-of-Experts (MoE) LLM model
ScaleMeta PlatformsFull-stack AI solutions
TiledeskFounders / employees / investorsAgentic-AI operating system
vLLMPyTorch FoundationLibrary repository
OpenClaw—Autonomous personal assistant
Mythic—Analog compute engine
Sailboat AI Agency—AI salesforce automation
Decision Algorithms / Belief Systems
NameYearMethod / Application
Logistic Regression—Finds the optimal hyperplane that maximizes the margin between different data classes.
Support Vector Machine (SVM)1963–1996Supervised ML: nonlinear classifiers (1992), soft-margin SVM (1995), support vector regression (1996). Used primarily as a non-linear classifier (binary and multi-class) and for regression.
Decision Trees—Method for modeling and reasoning with uncertainty and incomplete information.
Basic Belief Assignments (BBA)—Dempster–Shafer (D-S) theory · Arthur P. Dempster.
Markov Decision Processes (MDP)1950sStochastic dynamic programming; also used to support training of LLMs.
Learning / Modeling Algorithms
NameYearMethod / Application
Residual Neural Network (ResNet)2015Learns the difference (residual) between input and desired output. Allows gradients to flow more easily through the network during training, mitigating the vanishing gradient problem. Computer vision.
Hidden Markov Model (HMM)—Used with data embedded on nonlinear high-dimensional manifolds via specialized algorithms that adapt the data to the Euclidean or discrete space of HMMs.
UMAP—Revealing discrete clusters; performance.
Diffusion Maps / SOM (Self-Organizing Map)—Dimensionality reduction and clustering.
Matryoshka Representation Learning (MRL)—Used by OpenAI's text-embedding-3-small and Google's gemini-embedding-001.
Neural Network Architectures — Field Notes
ArchitectureNotes
ANNArtificial Neural Network — the root of the taxonomy.
CNNConvolutional Neural Network.
FFNFeed-forward network; FFNs are located inside Transformer blocks. dffn = 4 × dmodel, a 3:1+ ratio of parameters in FFN vs. attention layers.
MLPMulti-Layer Perceptron: modern, feedforward, supervised; universal function approximator; nonlinear activations; classifies data that is not linearly separable.
RBFNRadial Basis Function Network.
RNNMay be dense within a single step; neurons need not link to all nodes in every step; can connect across time; processes sequentially.
LSTMLong Short-Term Memory; gating — not fully connected layers; processes sequentially.
TransformerNo recurrent units; supports parallelization and fine-tuning; (self) multi-head attention; temperature / top-p adjust the decoder strategy.
SNN (2017)Spiking Neural Network.
SRNN (2017)Sliced Recurrent Neural Network.
Academic Milestones
WorkYearDeveloper(s)Significance
A Logical Calculus of the Ideas Immanent in Nervous Activity1943Warren McCulloch, Walter Pitts — Univ. of ChicagoProposed artificial neuron networks.
Machine Intelligence1948Alan Turing — National Physical LaboratoryProposed training through a pain/pleasure mechanism.
SNARC1951Marvin Minsky (graduate student) — PrincetonStochastic Neural Analog Reinforcement Calculator; one of the first attempts at building an AI machine.
The Perceptron1957Frank Rosenblatt — CornellA probabilistic model for information storage and organization.
Brain Function and Adaptive Systems: A Heterostatic Theory1972A. Harry Klopf — Air Force Cambridge Research LaboratoriesReinforcement learning.
Learning Representations by Back-Propagating Errors1986Rumelhart, Hinton, WilliamsLed to widespread adoption of backpropagation.
Attention Is All You Need2017Noam Shazeer (team lead) — GoogleTransformers: multi-head attention, vectorized word embedding.
Influential Project Milestones
NameYearCategoryDetails
AAAI1979SocietyAssociation for the Advancement of Artificial Intelligence — Newell, Feigenbaum, Minsky, McCarthy.
The Society of Mind1986BookMarvin Minsky — agentics as applied to mind; feedforward; Mixture of Experts architecture.
Reinforcement Learning: An Introduction1998BookAndrew Barto / Richard Sutton — UMass Amherst.
AlphaGo → Master → Zero2015–2017GameDemis Hassabis, DeepMind — single-purpose → generalized → self-taught game solver.
AlphaFold2017ApplicationDeepMind — generalized solution to the protein-folding problem.
ONNX2017RepositoryOpen Neural Network Exchange — Linux Foundation.
Isomorphic Labs2021LabDemis Hassabis — advancing human health by building on and beyond the Nobel-winning AlphaFold system.
MCP — Model Context Protocol2024ProtocolAnthropic.
LangChain2024FrameworkHarrison Chase — integration framework.
Google Brain lab2024LabAndrew Ng — Google AI lab.
Prompt Design and Engineering: Introduction and Advanced Methods2024PaperXavier Amatriain.
A2A — Agent2Agent Protocol2025ProtocolGoogle — inter-agent communications.
PegasusAI—GrantNSF — scientific workflow management.
AI Alignment
CategoryOperation
Alignment FakingAI models selectively modify their behavior to appear compliant during evaluation while pursuing hidden agendas.
Scalable OversightMethods that allow supervision of AI systems performing tasks too complex for unaided humans to fully understand.
Mechanistic InterpretabilityReverse-engineering neural networks to understand the internal mechanisms and representations that drive their decisions.
Reward HackingAI finds a "shortcut" to a high reward without actually completing the task as intended.
Neuromorphic Chips
ChipMaker
80170 ETANN (1987)Intel
Loihi / Loihi 2Intel
TrueNorthIBM
MLX100Zhejiang University
Darwin 3Tetramem
Scoring Metrics & Theorems
ItemMeaning
BLEUBilingual Evaluation Understudy.
COMETCrosslingual Optimized Metric for Evaluation of Translation.
Universal Approximation TheoremFoundational result behind MLPs.
Non-linear metrics for nested networksReferenced mathematics paper.
Activation Functions — Equations
NameOriginEquation
ReLU — Rectified Linear Unit—ReLU(x) = x if x > 0 · 0 if x < 0
RBF — Radial Basis FunctionRolland Hardy (1970); Broomhead & Lowe formulated RBF networks in 1988φ(r) = e−r²/2σ²
Logistic (Sigmoid)—σ(x) = 1 / (1 + e−x)
SoftmaxGeneralization of the sigmoid for k > 2σ(zi) = ezi / Σj=1..K ezj
Leadership & People
NameRole / Affiliation
Tristan HarrisAmerican technology ethicist
Andrej KarpathyDirector of AI, Tesla (former)
Warren McCulloch · Walter PittsArtificial-neuron pioneers, 1943
Alan TuringMachine Intelligence, 1948
Marvin MinskySNARC · The Society of Mind · AAAI
Ilya SutskeverSafe Superintelligence Inc
Patrick Lewis · Sebastian RiedelMeta
Paul-Ambroise Duquenne · Holger SchwenkMeta FAIR — SONAR
Yann LeCun · Joelle PineauFAIR (Fundamental AI Research), founded 2013 at Meta
Rosalind PicardAffective computing
Daniel KokotajloAI-risk forecasting (AI2027)
Context Engineering — ICL Modes
ModeMethod
In-context learning (ICL)Adapts the model's behavior during inference without modifying model weights.
Zero-shotThe model is given a task description but no examples.
One-shotThe model is provided with exactly one example.
Few-shotThe model receives multiple examples (typically 2 to 8).
PROJECT: LIGHTSTRUC AISHEET: REFERENCE SCHEDULESSOURCE: Ai.htmlREV 2.1