Glossary – 100 “AI” Terms

Below is a glossary that includes 100 common “AI (Artificial Intelligence)” terms and phrases in alphabetical order. Enjoy!

TermDefinition & Example
 AccuracyPercentage of correct predictions. Example: 92% accuracy.
 AgentAI entity performing tasks autonomously. Example: Task-planning agent.
 AI AlignmentEnsuring AI goals match human values. Example: Safe AI systems.
 AI BiasSystematic unfairness in AI outcomes. Example: Biased hiring models.
 AlgorithmA set of rules used to train models. Example: Decision tree algorithm.
 Artificial General Intelligence (AGI)Hypothetical AI with human-level intelligence. Example: Broad reasoning across tasks.
 Artificial Intelligence (AI)Systems that perform tasks requiring human-like intelligence. Example: Chatbots answering questions.
 Artificial Neural Network (ANN)A network of interconnected artificial neurons. Example: Credit scoring models.
 Attention MechanismFocuses model on relevant input parts. Example: Language translation.
 AUCArea under ROC curve. Example: Model comparison.
 AutoMLAutomated model selection and tuning. Example: Auto-generated models.
 Autonomous SystemAI operating with minimal human input. Example: Self-driving cars.
 BackpropagationMethod to update neural network weights. Example: Deep learning training.
 BatchSubset of data processed at once. Example: Batch size of 32.
 Batch InferencePredictions made in bulk. Example: Nightly scoring jobs.
 Bias (Model Bias)Error from oversimplified assumptions. Example: Linear model on non-linear data.
 Bias–Variance TradeoffBalance between bias and variance. Example: Choosing model complexity.
 Black Box ModelModel with opaque internal logic. Example: Deep neural networks.
 ClassificationPredicting categorical outcomes. Example: Email spam classification.
 ClusteringGrouping similar data points. Example: Customer segmentation.
 Computer VisionAI for interpreting images and video. Example: Facial recognition.
 Concept DriftChanges in underlying relationships. Example: Fraud patterns evolving.
 Confusion MatrixTable evaluating classification results. Example: True positives vs false positives.
 Data AugmentationExpanding data via transformations. Example: Image rotation.
 Data DriftChanges in input data distribution. Example: New user demographics.
 Data LeakageUsing future information in training. Example: Including test labels.
 Decision TreeTree-based decision model. Example: Loan approval logic.
 Deep LearningML using multi-layer neural networks. Example: Image recognition.
 Dimensionality ReductionReducing number of features. Example: PCA for visualization.
 Edge AIAI running on local devices. Example: Smart cameras.
 EmbeddingNumerical representation of data. Example: Word embeddings.
 Ensemble ModelCombining multiple models. Example: Random forest.
 EpochOne full pass through training data. Example: 50 training epochs.
 Ethics in AIMoral considerations in AI use. Example: Avoiding bias.
 Explainable AI (XAI)Making AI decisions understandable. Example: Feature importance charts.
 F1 ScoreBalance of precision and recall. Example: Imbalanced datasets.
 FairnessEquitable AI outcomes across groups. Example: Equal approval rates.
 FeatureAn input variable for a model. Example: Customer age.
 Feature EngineeringCreating or transforming features to improve models. Example: Calculating customer tenure.
 Federated LearningTraining models across decentralized data. Example: Mobile keyboard predictions.
 Few-Shot LearningLearning from few examples. Example: Custom classification with few samples.
 Fine-TuningFurther training a pre-trained model. Example: Custom chatbot training.
 GeneralizationModel’s ability to perform on new data. Example: Accurate predictions on unseen data.
 Generative AIAI that creates new content. Example: Text or image generation.
 Gradient BoostingSequentially improving weak models. Example: XGBoost.
 Gradient DescentOptimization technique adjusting weights iteratively. Example: Training neural networks.
 HallucinationModel generates incorrect information. Example: False factual claims.
 HyperparameterConfiguration set before training. Example: Learning rate.
 InferenceUsing a trained model to predict. Example: Real-time recommendations.
 K-MeansClustering algorithm. Example: Market segmentation.
 Knowledge GraphGraph-based representation of knowledge. Example: Search engines.
 LabelThe correct output for supervised learning. Example: “Fraud” or “Not Fraud”.
 Large Language Model (LLM)AI trained on massive text corpora. Example: ChatGPT.
 Loss FunctionMeasures model error during training. Example: Mean squared error.
 Machine Learning (ML)AI that learns patterns from data without explicit programming. Example: Spam email detection.
 MLOpsPractices for managing ML lifecycle. Example: CI/CD for models.
 ModelA trained mathematical representation of patterns. Example: Logistic regression model.
 Model DeploymentMaking a model available for use. Example: API-based predictions.
 Model DriftModel performance degradation over time. Example: Changing customer behavior.
 Model InterpretabilityAbility to understand model behavior. Example: Decision tree visualization.
 Model VersioningTracking model changes. Example: v1 vs v2 models.
 MonitoringTracking model performance in production. Example: Accuracy alerts.
 Multimodal AIAI handling multiple data types. Example: Text + image models.
 Naive BayesProbabilistic classification algorithm. Example: Spam filtering.
 Natural Language Processing (NLP)AI for understanding human language. Example: Sentiment analysis.
 Neural NetworkModel inspired by the human brain’s structure. Example: Handwritten digit recognition.
 OptimizationProcess of minimizing loss. Example: Gradient descent.
 OverfittingModel learns noise instead of patterns. Example: Perfect training accuracy, poor test accuracy.
 PipelineAutomated ML workflow. Example: Training-to-deployment flow.
 PrecisionCorrect positive predictions rate. Example: Fraud detection precision.
 Pretrained ModelModel trained on general data. Example: GPT models.
 Principal Component Analysis (PCA)Technique for dimensionality reduction. Example: Compressing high-dimensional data.
 PrivacyProtecting personal data. Example: Anonymizing training data.
 PromptInput instruction for generative models. Example: “Summarize this text.”
 Prompt EngineeringCrafting effective prompts. Example: Improving LLM responses.
 Random ForestEnsemble of decision trees. Example: Classification tasks.
 Real-Time InferenceImmediate predictions on live data. Example: Fraud detection.
 RecallAbility to find all positives. Example: Cancer detection.
 RegressionPredicting numeric values. Example: Sales forecasting.
 Reinforcement LearningLearning through rewards and penalties. Example: Game-playing AI.
 ReproducibilityAbility to recreate results. Example: Fixed random seeds.
 RoboticsAI applied to physical machines. Example: Warehouse robots.
 ROC CurvePerformance visualization for classifiers. Example: Threshold analysis.
 Semi-Supervised LearningMix of labeled and unlabeled data. Example: Image classification with limited labels.
 Speech RecognitionConverting speech to text. Example: Voice assistants.
 Supervised LearningLearning using labeled data. Example: Predicting house prices from known values.
 Support Vector Machine (SVM)Algorithm separating data with margins. Example: Text classification.
 Synthetic DataArtificially generated data. Example: Privacy-safe training.
 Test DataData used to evaluate model performance. Example: Held-out validation dataset.
 ThresholdCutoff for classification decisions. Example: Probability > 0.7.
 TokenSmallest unit of text processed by models. Example: Words or subwords.
 Training DataData used to teach a model. Example: Historical sales records.
 Transfer LearningReusing knowledge from another task. Example: Image model reused for medical scans.
 TransformerNeural architecture for sequence data. Example: Language translation models.
 UnderfittingModel too simple to capture patterns. Example: High error on all datasets.
 Unsupervised LearningLearning from unlabeled data. Example: Customer clustering.
 Validation DataData used to tune model parameters. Example: Hyperparameter selection.
 VarianceError from sensitivity to data fluctuations. Example: Highly complex model.
 XGBoostOptimized gradient boosting algorithm. Example: Kaggle competitions.
 Zero-Shot LearningPerforming tasks without examples. Example: Classifying unseen labels.

Please share your suggestions for any terms that should be added.

Leave a comment